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/qstringlist.cpp | |
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/qstringlist.cpp')
-rw-r--r-- | src/tools/qstringlist.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qstringlist.cpp b/src/tools/qstringlist.cpp index 3f77cc52d..71427d4e7 100644 --- a/src/tools/qstringlist.cpp +++ b/src/tools/qstringlist.cpp @@ -40,7 +40,7 @@ #include "ntqstringlist.h" -#ifndef QT_NO_STRINGLIST +#ifndef TQT_NO_STRINGLIST #include "ntqregexp.h" #include "ntqstrlist.h" #include "ntqdatastream.h" @@ -244,7 +244,7 @@ TQStringList TQStringList::split( const TQString &sep, const TQString &str, return lst; } -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP /*! Splits the string \a str into strings wherever the regular expression \a sep occurs, and returns the list of those strings. @@ -323,7 +323,7 @@ TQStringList TQStringList::grep( const TQString &str, bool cs ) const return res; } -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP /*! \overload @@ -373,7 +373,7 @@ TQStringList& TQStringList::gres( const TQString &before, const TQString &after, return *this; } -#ifndef QT_NO_REGEXP_CAPTURE +#ifndef TQT_NO_REGEXP_CAPTURE /*! \overload @@ -435,7 +435,7 @@ TQString TQStringList::join( const TQString &sep ) const return res; } -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM Q_EXPORT TQDataStream &operator>>( TQDataStream & s, TQStringList& l ) { return s >> (TQValueList<TQString>&)l; @@ -464,4 +464,4 @@ TQStringList TQStringList::fromStrList(const TQStrList& ascii) */ -#endif //QT_NO_STRINGLIST +#endif //TQT_NO_STRINGLIST |