summaryrefslogtreecommitdiffstats
path: root/doc/html/tqptrdictiterator.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/tqptrdictiterator.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqptrdictiterator.html')
-rw-r--r--doc/html/tqptrdictiterator.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/tqptrdictiterator.html b/doc/html/tqptrdictiterator.html
index 857a2e7a4..1d8557ec3 100644
--- a/doc/html/tqptrdictiterator.html
+++ b/doc/html/tqptrdictiterator.html
@@ -62,12 +62,12 @@ iterator that operates on TQPtrDict&lt;X&gt; (dictionary of X*).
<pre>
<a href="tqptrdict.html">TQPtrDict</a>&lt;char&gt; fields;
- <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" );
+ <a href="tqlineedit.html">TQLineEdit</a> *le1 = new <a href="tqlineedit.html">TQLineEdit</a>( this );
+ le1-&gt;<a href="tqlineedit.html#setText">setText</a>( "Simpson" );
+ <a href="tqlineedit.html">TQLineEdit</a> *le2 = new <a href="tqlineedit.html">TQLineEdit</a>( this );
+ le2-&gt;<a href="tqlineedit.html#setText">setText</a>( "Homer" );
+ <a href="tqlineedit.html">TQLineEdit</a> *le3 = new <a href="tqlineedit.html">TQLineEdit</a>( this );
+ le3-&gt;<a href="tqlineedit.html#setText">setText</a>( "45" );
fields.<a href="tqptrdict.html#insert">insert</a>( le1, "Surname" );
fields.<a href="tqptrdict.html#insert">insert</a>( le2, "Forename" );
@@ -75,8 +75,8 @@ iterator that operates on TQPtrDict&lt;X&gt; (dictionary of X*).
TQPtrDictIterator&lt;char&gt; it( fields );
for( ; it.<a href="#current">current</a>(); ++it ) {
- <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;
+ <a href="tqlineedit.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="tqlineedit.html#text">text</a>() &lt;&lt; endl;
}
cout &lt;&lt; endl;