diff options
Diffstat (limited to 'src/tools/qstringlist.cpp')
-rw-r--r-- | src/tools/qstringlist.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/tools/qstringlist.cpp b/src/tools/qstringlist.cpp index 7234cc40f..3f77cc52d 100644 --- a/src/tools/qstringlist.cpp +++ b/src/tools/qstringlist.cpp @@ -38,16 +38,16 @@ ** **********************************************************************/ -#include "qstringlist.h" +#include "ntqstringlist.h" #ifndef QT_NO_STRINGLIST -#include "qregexp.h" -#include "qstrlist.h" -#include "qdatastream.h" -#include "qtl.h" +#include "ntqregexp.h" +#include "ntqstrlist.h" +#include "ntqdatastream.h" +#include "ntqtl.h" /*! - \class TQStringList qstringlist.h + \class TQStringList ntqstringlist.h \reentrant \brief The TQStringList class provides a list of strings. @@ -61,7 +61,7 @@ objects. Unlike TQStrList, which stores pointers to characters, TQStringList holds real TQString objects. It is the class of choice whenever you work with Unicode strings. TQStringList is part of the - \link qtl.html TQt Template Library\endlink. + \link ntqtl.html TQt Template Library\endlink. Like TQString itself, TQStringList objects are implicitly shared, so passing them around as value-parameters is both fast and safe. @@ -171,7 +171,7 @@ /*! Sorts the list of strings in ascending case-sensitive order. - Sorting is very fast. It uses the \link qtl.html TQt Template + Sorting is very fast. It uses the \link ntqtl.html TQt Template Library's\endlink efficient HeapSort implementation that has a time complexity of O(n*log n). @@ -388,7 +388,7 @@ TQStringList& TQStringList::gres( const TQString &before, const TQString &after, // list == ["olpha", "beta", "gamma", "epsilon"] \endcode - For regexps containing \link qregexp.html#capturing-text + For regexps containing \link ntqregexp.html#capturing-text capturing parentheses \endlink, occurrences of <b>\\1</b>, <b>\\2</b>, ..., in \a after are replaced with \a{rx}.cap(1), cap(2), ... |