summaryrefslogtreecommitdiffstats
path: root/src/tools/ntqstringlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ntqstringlist.h')
-rw-r--r--src/tools/ntqstringlist.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/ntqstringlist.h b/src/tools/ntqstringlist.h
index b5f857d5..5fc82435 100644
--- a/src/tools/ntqstringlist.h
+++ b/src/tools/ntqstringlist.h
@@ -47,7 +47,7 @@
#include "ntqstrlist.h"
#endif // QT_H
-#ifndef QT_NO_STRINGLIST
+#ifndef TQT_NO_STRINGLIST
class TQRegExp;
template <class T> class TQDeepCopy;
@@ -65,7 +65,7 @@ public:
TQStringList( const TQStringList& l ) : TQValueList<TQString>(l) { }
TQStringList( const TQValueList<TQString>& l ) : TQValueList<TQString>(l) { }
TQStringList( const TQString& i ) { append(i); }
-#ifndef QT_NO_CAST_ASCII
+#ifndef TQT_NO_CAST_ASCII
TQStringList( const char* i ) { append(i); }
#endif
@@ -75,19 +75,19 @@ public:
static TQStringList split( const TQString &sep, const TQString &str, bool allowEmptyEntries = FALSE );
static TQStringList split( const TQChar &sep, const TQString &str, bool allowEmptyEntries = FALSE );
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
static TQStringList split( const TQRegExp &sep, const TQString &str, bool allowEmptyEntries = FALSE );
#endif
TQString join( const TQString &sep ) const;
TQStringList grep( const TQString &str, bool cs = TRUE ) const;
-#ifndef QT_NO_REGEXP
+#ifndef TQT_NO_REGEXP
TQStringList grep( const TQRegExp &expr ) const;
#endif
TQStringList& gres( const TQString &before, const TQString &after,
bool cs = TRUE );
-#ifndef QT_NO_REGEXP_CAPTURE
+#ifndef TQT_NO_REGEXP_CAPTURE
TQStringList& gres( const TQRegExp &expr, const TQString &after );
#endif
@@ -96,11 +96,11 @@ protected:
friend class TQDeepCopy< TQStringList >;
};
-#ifndef QT_NO_DATASTREAM
+#ifndef TQT_NO_DATASTREAM
class TQDataStream;
extern Q_EXPORT TQDataStream &operator>>( TQDataStream &, TQStringList& );
extern Q_EXPORT TQDataStream &operator<<( TQDataStream &, const TQStringList& );
#endif
-#endif // QT_NO_STRINGLIST
+#endif // TQT_NO_STRINGLIST
#endif // TQSTRINGLIST_H