diff options
Diffstat (limited to 'doc/collect.doc')
-rw-r--r-- | doc/collect.doc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/collect.doc b/doc/collect.doc index ffd865a2f..e2b862e34 100644 --- a/doc/collect.doc +++ b/doc/collect.doc @@ -130,7 +130,7 @@ them out in reverse order: const char *name() const { return n; } int salary() const { return s; } private: - QString n; + TQString n; int s; }; @@ -239,7 +239,7 @@ Qt has the following predefined collection classes: \endlist In almost all cases you would choose \l QStringList, a value -list of implicitly shared QString Unicode strings. QPtrStrList and +list of implicitly shared TQString Unicode strings. QPtrStrList and QPtrStrIList store only char pointers, not the strings themselves. \section1 List of Pointer-based Collection Classes and Related |