summaryrefslogtreecommitdiffstats
path: root/doc/html/tqvaluelist.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-09 14:57:42 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-12 18:58:18 +0900
commit6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch)
tree4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/tqvaluelist.html
parent0582c90a9ed4b965629267713f51c0da7c38b39d (diff)
downloadtqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.tar.gz
tqt3-6f57abfc9cd3acf1d648aee696947ac9216adb71.zip
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqvaluelist.html')
-rw-r--r--doc/html/tqvaluelist.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqvaluelist.html b/doc/html/tqvaluelist.html
index 62b86eac..6dfd8b1c 100644
--- a/doc/html/tqvaluelist.html
+++ b/doc/html/tqvaluelist.html
@@ -125,7 +125,7 @@ provides lists.
<p> TQValueList is a TQt implementation of an STL-like list container.
It can be used in your application if the standard <tt>list</tt> is not
available for your target platform(s). TQValueList is part of the
-<a href="ntqtl.html">TQt Template Library</a>.
+<a href="tqtl.html">TQt Template Library</a>.
<p> TQValueList&lt;T&gt; defines a template instance to create a list of
values that all have the class T. Note that TQValueList does not
store pointers to the members of the list; it holds a copy of
@@ -213,7 +213,7 @@ list it belongs to, however it is <em>not</em> dereferenceable;
<a href="tqsize.html#operator*-4">operator*</a>() will not return a well-defined value. If the list is
<a href="#empty">empty</a>(), the iterator returned by begin() will equal the iterator
returned by end().
-<p> Another way to find an item in the list is by using the <a href="ntqtl.html#qFind">tqFind()</a> algorithm. For example:
+<p> Another way to find an item in the list is by using the <a href="tqtl.html#qFind">tqFind()</a> algorithm. For example:
<p> <pre>
TQValueList&lt;int&gt; list;
...
@@ -269,7 +269,7 @@ specific positions within the list.
are several variants of the <a href="#remove">remove</a>() function, which removes a
specific item from the list. The remove() function will find and
remove items according to a specific item value.
-<p> Lists can also be sorted using the <a href="ntqtl.html">TQt Template
+<p> Lists can also be sorted using the <a href="tqtl.html">TQt Template
Library</a>. For example with qHeapSort():
<p> Example:
<pre>
@@ -281,7 +281,7 @@ remove items according to a specific item value.
qHeapSort( list );
</pre>
-<p> <p>See also <a href="tqvaluelistiterator.html">TQValueListIterator</a>, <a href="ntqtl.html">TQt Template Library Classes</a>, <a href="shared.html">Implicitly and Explicitly Shared Classes</a>, and <a href="tools.html">Non-GUI Classes</a>.
+<p> <p>See also <a href="tqvaluelistiterator.html">TQValueListIterator</a>, <a href="tqtl.html">TQt Template Library Classes</a>, <a href="shared.html">Implicitly and Explicitly Shared Classes</a>, and <a href="tools.html">Non-GUI Classes</a>.
<hr><h2>Member Type Documentation</h2>
<h3 class=fn><a name="ConstIterator"></a>TQValueList::ConstIterator</h3>