summaryrefslogtreecommitdiffstats
path: root/doc/html/qt-template-lib.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qt-template-lib.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30.tar.gz
tqt-e6077c30.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qt-template-lib.html')
-rw-r--r--doc/html/qt-template-lib.html10
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&lt;</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 &lt;&lt; "Weis" &lt;&lt; "Ettrich" &lt;&lt; "Arnt" &lt;&lt; "Sue";
list2 &lt;&lt; "Torben" &lt;&lt; "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 &gt;&gt; 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>