From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/qt-template-lib.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/qt-template-lib.html') diff --git a/doc/html/qt-template-lib.html b/doc/html/qt-template-lib.html index a96e9b7f0..3f3c4c831 100644 --- a/doc/html/qt-template-lib.html +++ b/doc/html/qt-template-lib.html @@ -73,7 +73,7 @@ will occur.

If you intend sorting your data you must implement operator<() for your data's class.

Good candidates for value based classes are TQRect, TQPoint, TQSize, -TQString and all simple C++ types, such as int, bool or double. +TQString and all simple C++ types, such as int, bool or double.

The TQt Template Library is designed for speed. Iterators are extremely fast. To achieve this performance, less error checking is done than in the TQPtrCollection based containers. A TQTL container, for example, @@ -160,8 +160,8 @@ your data's class.

tqSwap() exchanges the values of two variables:

-    TQString second( "Einstein" );
-    TQString name( "Albert" );
+    TQString second( "Einstein" );
+    TQString name( "Albert" );
     tqSwap( second, name );
 
@@ -268,7 +268,7 @@ Just make sure that the right hand of the iterator has as many elements present as you want to insert. The following example illustrates this:

-    TQStringList list1, list2;
+    TQStringList list1, list2;
     list1 << "Weis" << "Ettrich" << "Arnt" << "Sue";
     list2 << "Torben" << "Matthias";
     tqCopy( list2.begin(), list2.end(), list1.begin() );
@@ -308,7 +308,7 @@ appropriate streaming operators. Here is an example.
     str >> list;
 
-

The same applies to TQStringList, TQValueStack and TQMap. +

The same applies to TQStringList, TQValueStack and TQMap.


-- cgit v1.2.3