diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:54:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-10-17 19:54:04 +0900 |
commit | 19da58656a063c39e48f251be084182cf2e68a8e (patch) | |
tree | c2159647f682c583da46704a246ea33d0900a7c3 /qtinterface/interface_tqt3/tqstringlist.cpp | |
parent | b485e990f30d3e434ae1366f1805dc833afa9845 (diff) | |
download | tqtinterface-19da58656a063c39e48f251be084182cf2e68a8e.tar.gz tqtinterface-19da58656a063c39e48f251be084182cf2e68a8e.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtinterface/interface_tqt3/tqstringlist.cpp')
-rw-r--r-- | qtinterface/interface_tqt3/tqstringlist.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qtinterface/interface_tqt3/tqstringlist.cpp b/qtinterface/interface_tqt3/tqstringlist.cpp index 99bc910..9fa4d7b 100644 --- a/qtinterface/interface_tqt3/tqstringlist.cpp +++ b/qtinterface/interface_tqt3/tqstringlist.cpp @@ -61,7 +61,7 @@ TQStringList TQStringList::split( const QString &sep, const QString &str, return lst; } -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP TQStringList TQStringList::split( const QRegExp &sep, const QString &str, bool allowEmptyEntries ) { @@ -105,7 +105,7 @@ TQStringList TQStringList::grep( const QString &str, bool cs ) const } -#ifndef QT_NO_REGEXP +#ifndef TQT_NO_REGEXP TQStringList TQStringList::grep( const QRegExp &rx ) const { TQStringList res; @@ -128,7 +128,7 @@ TQStringList& TQStringList::gres( const QString &before, const QString &after, return *this; } -#ifndef QT_NO_REGEXP_CAPTURE +#ifndef TQT_NO_REGEXP_CAPTURE TQStringList& TQStringList::gres( const QRegExp &rx, const QString &after ) { TQStringList::Iterator it = begin(); @@ -154,7 +154,7 @@ QString TQStringList::join( const QString &sep ) const return res; } -#ifndef QT_NO_DATASTREAM +#ifndef TQT_NO_DATASTREAM QDataStream &operator>>( QDataStream & s, TQStringList& l ) { return s >> (TQValueList<QString>&)l; |