summaryrefslogtreecommitdiffstats
path: root/doc/collect.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-24 20:14:25 +0900
commitd73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch)
treee2c52ad435e8cca696acae34b1f451e934675a64 /doc/collect.doc
parenteb42871e999672a8fad5793733c58be05928c8ea (diff)
downloadtqt-r14.1.1.tar.gz
tqt-r14.1.1.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/collect.doc')
-rw-r--r--doc/collect.doc4
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