diff options
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; } |