diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/collect.doc | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
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 |