summaryrefslogtreecommitdiffstats
path: root/doc/qtl.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-20 20:15:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/qtl.doc
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt-1e9fa8e0.tar.gz
tqt-1e9fa8e0.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/qtl.doc')
-rw-r--r--doc/qtl.doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/qtl.doc b/doc/qtl.doc
index 1787e00bd..07c6526a7 100644
--- a/doc/qtl.doc
+++ b/doc/qtl.doc
@@ -89,7 +89,7 @@ will occur.
If you intend sorting your data you must implement \c{operator<()} for
your data's class.
-Good candidates for value based classes are QRect, QPoint, TQSize,
+Good candidates for value based classes are TQRect, TQPoint, TQSize,
TQString and all simple C++ types, such as int, bool or double.
The TQt Template Library is designed for speed. Iterators are extremely
@@ -342,7 +342,7 @@ appropriate streaming operators. Here is an example.
\code
TQDataStream str(...);
- TQValueList<QRect> list;
+ TQValueList<TQRect> list;
// ... fill the list here
str << list;
\endcode
@@ -350,7 +350,7 @@ appropriate streaming operators. Here is an example.
The container can be read in again with:
\code
- TQValueList<QRect> list;
+ TQValueList<TQRect> list;
str >> list;
\endcode