summaryrefslogtreecommitdiffstats
path: root/qtinterface/interface_tqt3/tqstringlist.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:54:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:54:04 +0900
commit19da58656a063c39e48f251be084182cf2e68a8e (patch)
treec2159647f682c583da46704a246ea33d0900a7c3 /qtinterface/interface_tqt3/tqstringlist.cpp
parentb485e990f30d3e434ae1366f1805dc833afa9845 (diff)
downloadtqtinterface-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.cpp8
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;