diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qptrlistiterator.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qptrlistiterator.html')
-rw-r--r-- | doc/html/qptrlistiterator.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qptrlistiterator.html b/doc/html/qptrlistiterator.html index 15485115b..dc98f3c9b 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 <<a href="qptrlist-h.html">qptrlist.h</a>></tt> +<p><tt>#include <<a href="qptrlist-h.html">ntqptrlist.h</a>></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<X> to create a list iterator that operates on TQPtrList<X> (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><Employee> list; + <a href="ntqptrlist.html">TQPtrList</a><Employee> 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<Employee> 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 <a href="qptrlist.html">TQPtrList</a><type> & list ) +<h3 class=fn><a name="TQPtrListIterator"></a>TQPtrListIterator::TQPtrListIterator ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) </h3> <p> Constructs an iterator for <em>list</em>. The current iterator item is |