summaryrefslogtreecommitdiffstats
path: root/doc/qtl.doc
diff options
context:
space:
mode:
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 1787e00b..07c6526a 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