summaryrefslogtreecommitdiffstats
path: root/doc/html/qptrdictiterator.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qptrdictiterator.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qptrdictiterator.html')
-rw-r--r--doc/html/qptrdictiterator.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/doc/html/qptrdictiterator.html b/doc/html/qptrdictiterator.html
index 1ae2100f..8e4f56d1 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 &lt;<a href="qptrdict-h.html">qptrdict.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qptrdict-h.html">ntqptrdict.h</a>&gt;</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&lt;X&gt; to create a dictionary
iterator that operates on TQPtrDict&lt;X&gt; (dictionary of X*).
<p> Example:
<pre>
- <a href="qptrdict.html">TQPtrDict</a>&lt;char&gt; fields;
+ <a href="ntqptrdict.html">TQPtrDict</a>&lt;char&gt; fields;
- <a href="qlineedit.html">TQLineEdit</a> *le1 = new <a href="qlineedit.html">TQLineEdit</a>( this );
- le1-&gt;<a href="qlineedit.html#setText">setText</a>( "Simpson" );
- <a href="qlineedit.html">TQLineEdit</a> *le2 = new <a href="qlineedit.html">TQLineEdit</a>( this );
- le2-&gt;<a href="qlineedit.html#setText">setText</a>( "Homer" );
- <a href="qlineedit.html">TQLineEdit</a> *le3 = new <a href="qlineedit.html">TQLineEdit</a>( this );
- le3-&gt;<a href="qlineedit.html#setText">setText</a>( "45" );
+ <a href="ntqlineedit.html">TQLineEdit</a> *le1 = new <a href="ntqlineedit.html">TQLineEdit</a>( this );
+ le1-&gt;<a href="ntqlineedit.html#setText">setText</a>( "Simpson" );
+ <a href="ntqlineedit.html">TQLineEdit</a> *le2 = new <a href="ntqlineedit.html">TQLineEdit</a>( this );
+ le2-&gt;<a href="ntqlineedit.html#setText">setText</a>( "Homer" );
+ <a href="ntqlineedit.html">TQLineEdit</a> *le3 = new <a href="ntqlineedit.html">TQLineEdit</a>( this );
+ le3-&gt;<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&lt;char&gt; 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 &lt;&lt; it.<a href="#current">current</a>() &lt;&lt; ": " &lt;&lt; le-&gt;<a href="qlineedit.html#text">text</a>() &lt;&lt; endl;
+ <a href="ntqlineedit.html">TQLineEdit</a> *le = (TQLineEdit)it.<a href="#currentKey">currentKey</a>();
+ cout &lt;&lt; it.<a href="#current">current</a>() &lt;&lt; ": " &lt;&lt; le-&gt;<a href="ntqlineedit.html#text">text</a>() &lt;&lt; endl;
}
cout &lt;&lt; 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&nbsp;<a href="qptrdict.html">TQPtrDict</a>&lt;type&gt;&nbsp;&amp;&nbsp;dict )
+<h3 class=fn><a name="TQPtrDictIterator"></a>TQPtrDictIterator::TQPtrDictIterator ( const&nbsp;<a href="ntqptrdict.html">TQPtrDict</a>&lt;type&gt;&nbsp;&amp;&nbsp;dict )
</h3>
<p> Constructs an iterator for <em>dict</em>. The current iterator item is