diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
commit | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch) | |
tree | d62f4174c0e58e1aa895fc71484d068b614cd6de /doc/html/ntqsplitter.html | |
parent | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff) | |
download | tqt-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.html | 10 |
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><int> list ) +<h3 class=fn>void <a name="setSizes"></a>TQSplitter::setSizes ( <a href="tqvaluelist.html">TQValueList</a><int> 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><int> <a name="sizes"></a>TQSplitter::sizes () const +<h3 class=fn><a href="tqvaluelist.html">TQValueList</a><int> <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><int> list = mySplitter.sizes(); - TQValueList<int>::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><int> list = mySplitter.sizes(); + TQValueList<int>::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } |