diff options
Diffstat (limited to 'doc/man/man3/tqsplitter.3qt')
-rw-r--r-- | doc/man/man3/tqsplitter.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqsplitter.3qt b/doc/man/man3/tqsplitter.3qt index 7f73a1dcf..59ab39e3a 100644 --- a/doc/man/man3/tqsplitter.3qt +++ b/doc/man/man3/tqsplitter.3qt @@ -61,10 +61,10 @@ Inherits QFrame. .BI "void \fBrefresh\fR ()" .br .ti -1c -.BI "QValueList<int> \fBsizes\fR () const" +.BI "TQValueList<int> \fBsizes\fR () const" .br .ti -1c -.BI "void \fBsetSizes\fR ( QValueList<int> list )" +.BI "void \fBsetSizes\fR ( TQValueList<int> list )" .br .ti -1c .BI "int \fBhandleWidth\fR () const" @@ -239,7 +239,7 @@ Examples: .)l fileiconview/mainwindow.cpp, listviews/listviews.cpp, and splitter/splitter.cpp. .SH "void QSplitter::setRubberband ( int p )\fC [virtual protected]\fR" Displays a rubber band at position \fIp\fR. If \fIp\fR is negative, the rubber band is removed. -.SH "void QSplitter::setSizes ( QValueList<int> list )" +.SH "void QSplitter::setSizes ( TQValueList<int> list )" Sets the size parameters to the values given in the \fIlist\fR. If the splitter is horizontal, the values set the widths of each widget going from left to right. If the splitter is vertical, the values set the heights of each widget going from top to bottom. Extra values in the \fIlist\fR are ignored. .PP If \fIlist\fR contains too few values, the result is undefined but the program will still be well-behaved. @@ -247,7 +247,7 @@ If \fIlist\fR contains too few values, the result is undefined but the program w Note that the values in \fIlist\fR should be the height/width that the widgets should be resized to. .PP See also sizes(). -.SH "QValueList<int> QSplitter::sizes () const" +.SH "TQValueList<int> QSplitter::sizes () const" Returns a list of the size parameters of all the widgets in this splitter. .PP If the splitter's orientation is horizontal, the list is a list of widget widths; if the orientation is vertical, the list is a list of widget heights. @@ -258,9 +258,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QValueList<int> list = mySplitter.sizes(); + TQValueList<int> list = mySplitter.sizes(); .br - QValueList<int>::Iterator it = list.begin(); + TQValueList<int>::Iterator it = list.begin(); .br while( it != list.end() ) { .br |