summaryrefslogtreecommitdiffstats
path: root/doc/html/qptrlistiterator.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qptrlistiterator.html')
-rw-r--r--doc/html/qptrlistiterator.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qptrlistiterator.html b/doc/html/qptrlistiterator.html
index 15485115..dc98f3c9 100644
--- a/doc/html/qptrlistiterator.html
+++ b/doc/html/qptrlistiterator.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQPtrListIterator class provides an iterator for
TQPtrList collections.
<a href="#details">More...</a>
-<p><tt>#include &lt;<a href="qptrlist-h.html">qptrlist.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qptrlist-h.html">ntqptrlist.h</a>&gt;</tt>
<p>Inherited by <a href="qobjectlistiterator.html">TQObjectListIterator</a> and <a href="qstrlistiterator.html">TQStrListIterator</a>.
<p><a href="qptrlistiterator-members.html">List of all member functions.</a>
<h2>Public Members</h2>
@@ -61,19 +61,19 @@ TQPtrList collections.
The TQPtrListIterator class provides an iterator for
-<a href="qptrlist.html">TQPtrList</a> collections.
+<a href="ntqptrlist.html">TQPtrList</a> collections.
<p>
<p> Define a template instance TQPtrListIterator&lt;X&gt; to create a list
iterator that operates on TQPtrList&lt;X&gt; (list of X*).
-<p> The following example is similar to the <a href="qptrlist.html#example">example in the TQPtrList class documentation</a>, but it uses TQPtrListIterator. The class Employee is
+<p> The following example is similar to the <a href="ntqptrlist.html#example">example in the TQPtrList class documentation</a>, but it uses TQPtrListIterator. The class Employee is
defined there.
<p> <pre>
- <a href="qptrlist.html">TQPtrList</a>&lt;Employee&gt; list;
+ <a href="ntqptrlist.html">TQPtrList</a>&lt;Employee&gt; list;
- list.<a href="qptrlist.html#append">append</a>( new Employee("John", "Doe", 50000) );
- list.<a href="qptrlist.html#append">append</a>( new Employee("Jane", "Williams", 80000) );
- list.<a href="qptrlist.html#append">append</a>( new Employee("Tom", "Jones", 60000) );
+ list.<a href="ntqptrlist.html#append">append</a>( new Employee("John", "Doe", 50000) );
+ list.<a href="ntqptrlist.html#append">append</a>( new Employee("Jane", "Williams", 80000) );
+ list.<a href="ntqptrlist.html#append">append</a>( new Employee("Tom", "Jones", 60000) );
TQPtrListIterator&lt;Employee&gt; it( list );
Employee *employee;
@@ -93,17 +93,17 @@ defined there.
</pre>
<p> Using a list iterator is a more robust way of traversing the list
-than using the <a href="qptrlist.html">TQPtrList</a> member functions <a href="qptrlist.html#first">first</a>(), <a href="qptrlist.html#next">next</a>(), <a href="qptrlist.html#current">current</a>(), etc., as many iterators can
+than using the <a href="ntqptrlist.html">TQPtrList</a> member functions <a href="ntqptrlist.html#first">first</a>(), <a href="ntqptrlist.html#next">next</a>(), <a href="ntqptrlist.html#current">current</a>(), etc., as many iterators can
traverse the same list independently.
<p> An iterator has its own current list item and can get the next and
previous list items. It doesn't modify the list in any way.
<p> When an item is removed from the list, all iterators that point to
-that item are updated to point to <a href="qptrlist.html#current">TQPtrList::current</a>() instead to
+that item are updated to point to <a href="ntqptrlist.html#current">TQPtrList::current</a>() instead to
avoid dangling references.
-<p> <p>See also <a href="qptrlist.html">TQPtrList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>.
+<p> <p>See also <a href="ntqptrlist.html">TQPtrList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn><a name="TQPtrListIterator"></a>TQPtrListIterator::TQPtrListIterator ( const&nbsp;<a href="qptrlist.html">TQPtrList</a>&lt;type&gt;&nbsp;&amp;&nbsp;list )
+<h3 class=fn><a name="TQPtrListIterator"></a>TQPtrListIterator::TQPtrListIterator ( const&nbsp;<a href="ntqptrlist.html">TQPtrList</a>&lt;type&gt;&nbsp;&amp;&nbsp;list )
</h3>
<p> Constructs an iterator for <em>list</em>. The current iterator item is