summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqsplitter.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
commit1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch)
treed62f4174c0e58e1aa895fc71484d068b614cd6de /doc/html/ntqsplitter.html
parent8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff)
downloadtqt-1f0ce853.tar.gz
tqt-1f0ce853.zip
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqsplitter.html')
-rw-r--r--doc/html/ntqsplitter.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/ntqsplitter.html b/doc/html/ntqsplitter.html
index b19a51878..88f10e783 100644
--- a/doc/html/ntqsplitter.html
+++ b/doc/html/ntqsplitter.html
@@ -249,7 +249,7 @@ Sets resize mode of widget <em>w</em> to <em>mode</em>. (The default is <a href=
Displays a rubber band at position <em>p</em>. If <em>p</em> is negative, the
rubber band is removed.
-<h3 class=fn>void <a name="setSizes"></a>TQSplitter::setSizes ( <a href="ntqvaluelist.html">TQValueList</a>&lt;int&gt;&nbsp;list )
+<h3 class=fn>void <a name="setSizes"></a>TQSplitter::setSizes ( <a href="tqvaluelist.html">TQValueList</a>&lt;int&gt;&nbsp;list )
</h3>
Sets the size parameters to the values given in the <em>list</em>. If
the splitter is horizontal, the values set the widths of each
@@ -262,7 +262,7 @@ the program will still be well-behaved.
the widgets should be resized to.
<p> <p>See also <a href="#sizes">sizes</a>().
-<h3 class=fn><a href="ntqvaluelist.html">TQValueList</a>&lt;int&gt; <a name="sizes"></a>TQSplitter::sizes () const
+<h3 class=fn><a href="tqvaluelist.html">TQValueList</a>&lt;int&gt; <a name="sizes"></a>TQSplitter::sizes () const
</h3>
Returns a list of the size parameters of all the widgets in this
splitter.
@@ -274,9 +274,9 @@ produce a splitter with the same layout as this one.
<p> Note that if you want to iterate over the list, you should iterate
over a copy, e.g.
<pre>
- <a href="ntqvaluelist.html">TQValueList</a>&lt;int&gt; list = mySplitter.sizes();
- TQValueList&lt;int&gt;::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>();
- while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) {
+ <a href="tqvaluelist.html">TQValueList</a>&lt;int&gt; list = mySplitter.sizes();
+ TQValueList&lt;int&gt;::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>();
+ while( it != list.<a href="tqvaluelist.html#end">end</a>() ) {
myProcessing( *it );
++it;
}