diff options
Diffstat (limited to 'doc/html/qt-template-lib.html')
-rw-r--r-- | doc/html/qt-template-lib.html | 10 |
1 files changed, 5 insertions, 5 deletions
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. <p> If you intend sorting your data you must implement <a href="ntqcstring.html#operator-lt-2">operator<</a>() for your data's class. <p> Good candidates for value based classes are <a href="ntqrect.html">TQRect</a>, <a href="ntqpoint.html">TQPoint</a>, <a href="ntqsize.html">TQSize</a>, -<a href="ntqstring.html">TQString</a> and all simple C++ types, such as int, bool or double. +<a href="tqstring.html">TQString</a> and all simple C++ types, such as int, bool or double. <p> The TQt Template Library is designed for speed. Iterators are extremely fast. To achieve this performance, less error checking is done than in the <a href="tqptrcollection.html">TQPtrCollection</a> based containers. A TQTL container, for example, @@ -160,8 +160,8 @@ your data's class. </h3> <a name="2-2"></a><p> tqSwap() exchanges the values of two variables: <pre> - <a href="ntqstring.html">TQString</a> second( "Einstein" ); - <a href="ntqstring.html">TQString</a> name( "Albert" ); + <a href="tqstring.html">TQString</a> second( "Einstein" ); + <a href="tqstring.html">TQString</a> name( "Albert" ); tqSwap( second, name ); </pre> @@ -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: <p> <pre> - <a href="ntqstringlist.html">TQStringList</a> list1, list2; + <a href="tqstringlist.html">TQStringList</a> list1, list2; list1 << "Weis" << "Ettrich" << "Arnt" << "Sue"; list2 << "Torben" << "Matthias"; tqCopy( list2.begin(), list2.end(), list1.<a href="tqvaluelist.html#begin">begin</a>() ); @@ -308,7 +308,7 @@ appropriate streaming operators. Here is an example. str >> list; </pre> -<p> The same applies to <a href="ntqstringlist.html">TQStringList</a>, <a href="tqvaluestack.html">TQValueStack</a> and <a href="tqmap.html">TQMap</a>. +<p> The same applies to <a href="tqstringlist.html">TQStringList</a>, <a href="tqvaluestack.html">TQValueStack</a> and <a href="tqmap.html">TQMap</a>. <!-- eof --> <p><address><hr><div align=center> |