summaryrefslogtreecommitdiffstats
path: root/doc/html/qlistviewitemiterator.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 12:20:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 12:20:38 +0900
commit0881ed5059c46ce73e8241e6260b82b92f6d0e55 (patch)
tree6d1d4883cc07ad22b11017d0714d4c26e1ce1b94 /doc/html/qlistviewitemiterator.html
parent1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (diff)
downloadtqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.tar.gz
tqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.zip
Rename ptr nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qlistviewitemiterator.html')
-rw-r--r--doc/html/qlistviewitemiterator.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qlistviewitemiterator.html b/doc/html/qlistviewitemiterator.html
index 907797f9..cc82a475 100644
--- a/doc/html/qlistviewitemiterator.html
+++ b/doc/html/qlistviewitemiterator.html
@@ -72,21 +72,21 @@ sibling, the next sibling of the parent becomes current.
been selected by the user, storing pointers to the items in a
TQPtrList:
<pre>
- <a href="ntqptrlist.html">TQPtrList</a>&lt;TQListViewItem&gt; lst;
+ <a href="tqptrlist.html">TQPtrList</a>&lt;TQListViewItem&gt; lst;
TQListViewItemIterator it( myListView );
while ( it.<a href="#current">current</a>() ) {
if ( it.<a href="#current">current</a>()-&gt;isSelected() )
- lst.<a href="ntqptrlist.html#append">append</a>( it.<a href="#current">current</a>() );
+ lst.<a href="tqptrlist.html#append">append</a>( it.<a href="#current">current</a>() );
++it;
}
</pre>
<p> An alternative approach is to use an <a href="#IteratorFlag-enum">IteratorFlag</a>:
<pre>
- <a href="ntqptrlist.html">TQPtrList</a>&lt;TQListViewItem&gt; lst;
+ <a href="tqptrlist.html">TQPtrList</a>&lt;TQListViewItem&gt; lst;
TQListViewItemIterator it( myListView, TQListViewItemIterator::<a href="#IteratorFlag-enum">Selected</a> );
while ( it.<a href="#current">current</a>() ) {
- lst.<a href="ntqptrlist.html#append">append</a>( it.<a href="#current">current</a>() );
+ lst.<a href="tqptrlist.html#append">append</a>( it.<a href="#current">current</a>() );
++it;
}
</pre>