diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/tools/ntqcstring.h | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/tools/ntqcstring.h')
-rw-r--r-- | src/tools/ntqcstring.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/ntqcstring.h b/src/tools/ntqcstring.h index e60e09693..e009b0c09 100644 --- a/src/tools/ntqcstring.h +++ b/src/tools/ntqcstring.h @@ -105,7 +105,7 @@ public: typedef TQMemArray<char> TQByteArray; #endif -#ifndef QT_NO_COMPRESS +#ifndef TQT_NO_COMPRESS Q_EXPORT TQByteArray tqCompress( const uchar* data, int nbytes ); Q_EXPORT TQByteArray tqUncompress( const uchar* data, int nbytes ); Q_EXPORT inline TQByteArray tqCompress( const TQByteArray& data) @@ -117,7 +117,7 @@ Q_EXPORT inline TQByteArray tqUncompress( const TQByteArray& data ) /***************************************************************************** TQByteArray stream functions *****************************************************************************/ -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQByteArray & ); Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQByteArray & ); #endif @@ -158,17 +158,17 @@ public: int find( char c, int index=0, bool cs=TRUE ) const; int find( const char *str, int index=0, bool cs=TRUE ) const; -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP int find( const TQRegExp &, int index=0 ) const; #endif int findRev( char c, int index=-1, bool cs=TRUE) const; int findRev( const char *str, int index=-1, bool cs=TRUE) const; -#ifndef QT_NO_REGEXP_CAPTURE +#ifndef TQT_NO_REGEXP_CAPTURE int findRev( const TQRegExp &, int index=-1 ) const; #endif int contains( char c, bool cs=TRUE ) const; int contains( const char *str, bool cs=TRUE ) const; -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP int contains( const TQRegExp & ) const; #endif TQCString left( uint len ) const; @@ -190,7 +190,7 @@ public: TQCString &prepend( const char * ); TQCString &remove( uint index, uint len ); TQCString &replace( uint index, uint len, const char * ); -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP TQCString &replace( const TQRegExp &, const char * ); #endif TQCString &replace( char c, const char *after ); @@ -229,7 +229,7 @@ private: /***************************************************************************** TQCString stream functions *****************************************************************************/ -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQCString & ); Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQCString & ); #endif |