summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqstringlist.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqstringlist.3qt')
-rw-r--r--doc/man/man3/tqstringlist.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqstringlist.3qt b/doc/man/man3/tqstringlist.3qt
index 05258faf..3f626967 100644
--- a/doc/man/man3/tqstringlist.3qt
+++ b/doc/man/man3/tqstringlist.3qt
@@ -9,7 +9,7 @@
.SH NAME
QStringList \- List of strings
.SH SYNOPSIS
-All the functions in this class are reentrant when Qt is built with thread support.</p>
+All the functions in this class are reentrant when TQt is built with thread support.</p>
.PP
\fC#include <ntqstringlist.h>\fR
.PP
@@ -69,7 +69,7 @@ Inherits QValueList<QString>.
.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 QString objects. Unlike QStrList, which stores pointers to characters, QStringList holds real QString objects. It is the class of choice whenever you work with Unicode strings. QStringList is part of the Qt Template Library.
+It is used to store and manipulate strings that logically belong together. Essentially QStringList is a QValueList of QString objects. Unlike QStrList, which stores pointers to characters, QStringList holds real QString objects. It is the class of choice whenever you work with Unicode strings. QStringList is part of the TQt Template Library.
.PP
Like QString itself, QStringList objects are implicitly shared, so passing them around as value-parameters is both fast and safe.
.PP
@@ -107,7 +107,7 @@ String lists have an iterator, QStringList::Iterator(), e.g.
.br
.fi
.PP
-Many Qt functions return string lists by value; to iterate over these you should make a copy and iterate over the copy.
+Many TQt functions return string lists by value; to iterate over these you should make a copy and iterate over the copy.
.PP
You can concatenate all the strings in a string list into a single string (with an optional separator) using join(), e.g.
.PP
@@ -275,7 +275,7 @@ Examples:
.SH "void QStringList::sort ()"
Sorts the list of strings in ascending case-sensitive order.
.PP
-Sorting is very fast. It uses the Qt Template Library's efficient HeapSort implementation that has a time complexity of O(n*log n).
+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<QString,QString> to create a case-insensitive ordering (e.g. mapping the lowercase text to the text), or a QMap<int,QString> to sort the strings by some integer index, etc.
.PP
@@ -324,8 +324,8 @@ If you find a bug in Qt, please report it as described in
.BR http://doc.trolltech.com/bughowto.html .
Good bug reports help us to help you. Thank you.
.P
-The definitive Qt documentation is provided in HTML format; it is
-located at $QTDIR/doc/html and can be read using Qt Assistant or with
+The definitive TQt documentation is provided in HTML format; it is
+located at $QTDIR/doc/html and can be read using TQt Assistant or with
a web browser. This man page is provided as a convenience for those
users who prefer man pages, although this format is not officially
supported by Trolltech.