diff options
Diffstat (limited to 'doc/html/qptrdictiterator.html')
-rw-r--r-- | doc/html/qptrdictiterator.html | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/qptrdictiterator.html b/doc/html/qptrdictiterator.html index 1ae2100f3..8e4f56d1c 100644 --- a/doc/html/qptrdictiterator.html +++ b/doc/html/qptrdictiterator.html @@ -33,7 +33,7 @@ body { background: #ffffff; color: black; } <p>The TQPtrDictIterator class provides an iterator for TQPtrDict collections. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrdict-h.html">qptrdict.h</a>></tt> +<p><tt>#include <<a href="qptrdict-h.html">ntqptrdict.h</a>></tt> <p><a href="qptrdictiterator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -52,7 +52,7 @@ body { background: #ffffff; color: black; } <hr><a name="details"></a><h2>Detailed Description</h2> -The TQPtrDictIterator class provides an iterator for <a href="qptrdict.html">TQPtrDict</a> collections. +The TQPtrDictIterator class provides an iterator for <a href="ntqptrdict.html">TQPtrDict</a> collections. <p> <p> TQPtrDictIterator is implemented as a template class. Define a @@ -60,23 +60,23 @@ template instance TQPtrDictIterator<X> to create a dictionary iterator that operates on TQPtrDict<X> (dictionary of X*). <p> Example: <pre> - <a href="qptrdict.html">TQPtrDict</a><char> fields; + <a href="ntqptrdict.html">TQPtrDict</a><char> fields; - <a href="qlineedit.html">TQLineEdit</a> *le1 = new <a href="qlineedit.html">TQLineEdit</a>( this ); - le1-><a href="qlineedit.html#setText">setText</a>( "Simpson" ); - <a href="qlineedit.html">TQLineEdit</a> *le2 = new <a href="qlineedit.html">TQLineEdit</a>( this ); - le2-><a href="qlineedit.html#setText">setText</a>( "Homer" ); - <a href="qlineedit.html">TQLineEdit</a> *le3 = new <a href="qlineedit.html">TQLineEdit</a>( this ); - le3-><a href="qlineedit.html#setText">setText</a>( "45" ); + <a href="ntqlineedit.html">TQLineEdit</a> *le1 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + le1-><a href="ntqlineedit.html#setText">setText</a>( "Simpson" ); + <a href="ntqlineedit.html">TQLineEdit</a> *le2 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + le2-><a href="ntqlineedit.html#setText">setText</a>( "Homer" ); + <a href="ntqlineedit.html">TQLineEdit</a> *le3 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + le3-><a href="ntqlineedit.html#setText">setText</a>( "45" ); - fields.<a href="qptrdict.html#insert">insert</a>( le1, "Surname" ); - fields.<a href="qptrdict.html#insert">insert</a>( le2, "Forename" ); - fields.<a href="qptrdict.html#insert">insert</a>( le3, "Age" ); + fields.<a href="ntqptrdict.html#insert">insert</a>( le1, "Surname" ); + fields.<a href="ntqptrdict.html#insert">insert</a>( le2, "Forename" ); + fields.<a href="ntqptrdict.html#insert">insert</a>( le3, "Age" ); TQPtrDictIterator<char> it( fields ); for( ; it.<a href="#current">current</a>(); ++it ) { - <a href="qlineedit.html">TQLineEdit</a> *le = (TQLineEdit)it.<a href="#currentKey">currentKey</a>(); - cout << it.<a href="#current">current</a>() << ": " << le-><a href="qlineedit.html#text">text</a>() << endl; + <a href="ntqlineedit.html">TQLineEdit</a> *le = (TQLineEdit)it.<a href="#currentKey">currentKey</a>(); + cout << it.<a href="#current">current</a>() << ": " << le-><a href="ntqlineedit.html#text">text</a>() << endl; } cout << endl; @@ -90,14 +90,14 @@ In the example we insert some line edits into a dictionary, associating a string with each. We then iterate over the dictionary printing the associated strings. <p> Multiple iterators may independently traverse the same dictionary. -A <a href="qptrdict.html">TQPtrDict</a> knows about all the iterators that are operating on the +A <a href="ntqptrdict.html">TQPtrDict</a> knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, TQPtrDict updates all iterators that refer the removed item to point to the next item in the traversing order. -<p> <p>See also <a href="qptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="ntqptrdict.html">TQPtrDict</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="TQPtrDictIterator"></a>TQPtrDictIterator::TQPtrDictIterator ( const <a href="qptrdict.html">TQPtrDict</a><type> & dict ) +<h3 class=fn><a name="TQPtrDictIterator"></a>TQPtrDictIterator::TQPtrDictIterator ( const <a href="ntqptrdict.html">TQPtrDict</a><type> & dict ) </h3> <p> Constructs an iterator for <em>dict</em>. The current iterator item is |