From 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 5 Jun 2024 19:02:23 +0900 Subject: Rename template library nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/man/man3/tqstringlist.3qt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/man/man3/tqstringlist.3qt') diff --git a/doc/man/man3/tqstringlist.3qt b/doc/man/man3/tqstringlist.3qt index c1da5978d..891227c7a 100644 --- a/doc/man/man3/tqstringlist.3qt +++ b/doc/man/man3/tqstringlist.3qt @@ -13,7 +13,7 @@ All the functions in this class are reentrant when TQt is built with thread supp .PP \fC#include \fR .PP -Inherits QValueList. +Inherits TQValueList. .PP .SS "Public Members" .in +1c @@ -24,7 +24,7 @@ Inherits QValueList. .BI "\fBQStringList\fR ( const QStringList & l )" .br .ti -1c -.BI "\fBQStringList\fR ( const QValueList & l )" +.BI "\fBQStringList\fR ( const TQValueList & l )" .br .ti -1c .BI "\fBQStringList\fR ( const TQString & i )" @@ -69,7 +69,7 @@ Inherits QValueList. .SH DESCRIPTION The QStringList class provides a list of strings. .PP -It is used to store and manipulate strings that logically belong together. Essentially QStringList is a QValueList of TQString objects. Unlike QStrList, which stores pointers to characters, QStringList holds real TQString objects. It is the class of choice whenever you work with Unicode strings. QStringList is part of the TQt Template Library. +It is used to store and manipulate strings that logically belong together. Essentially QStringList is a TQValueList of TQString objects. Unlike QStrList, which stores pointers to characters, QStringList holds real TQString objects. It is the class of choice whenever you work with Unicode strings. QStringList is part of the TQt Template Library. .PP Like TQString itself, QStringList objects are implicitly shared, so passing them around as value-parameters is both fast and safe. .PP @@ -169,7 +169,7 @@ Creates an empty string list. .SH "QStringList::QStringList ( const QStringList & l )" Creates a copy of the list \fIl\fR. This function is very fast because QStringList is implicitly shared. In most situations this acts like a deep copy, for example, if this list or the original one or some other list referencing the same shared data is modified, the modifying list first makes a copy, i.e. copy-on-write. In a threaded environment you may require a real deep copy . -.SH "QStringList::QStringList ( const QValueList & l )" +.SH "QStringList::QStringList ( const TQValueList & l )" Constructs a new string list that is a copy of \fIl\fR. .SH "QStringList::QStringList ( const TQString & i )" Constructs a string list consisting of the single string \fIi\fR. Longer lists are easily created as follows: @@ -277,7 +277,7 @@ Sorts the list of strings in ascending case-sensitive order. .PP Sorting is very fast. It uses the TQt Template Library's efficient HeapSort implementation that has a time complexity of O(n*log n). .PP -If you want to sort your strings in an arbitrary order consider using a QMap. For example you could use a QMap to create a case-insensitive ordering (e.g. mapping the lowercase text to the text), or a QMap to sort the strings by some integer index, etc. +If you want to sort your strings in an arbitrary order consider using a TQMap. For example you could use a TQMap to create a case-insensitive ordering (e.g. mapping the lowercase text to the text), or a TQMap to sort the strings by some integer index, etc. .PP Example: themes/themes.cpp. .SH "QStringList QStringList::split ( const QRegExp & sep, const TQString & str, bool allowEmptyEntries = FALSE )\fC [static]\fR" -- cgit v1.2.3