summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsplitter.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-08 12:56:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-08 12:56:43 +0900
commit0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch)
tree107cf55759cc3138bb1e0035b479bcd92127403a /doc/man/man3/tqsplitter.3qt
parente6077c30d14e9d662e8843c554db86c0d366d0b6 (diff)
downloadtqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.tar.gz
tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.zip
Rename text nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqsplitter.3qt')
-rw-r--r--doc/man/man3/tqsplitter.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqsplitter.3qt b/doc/man/man3/tqsplitter.3qt
index 59ab39e3a..0c6021a86 100644
--- a/doc/man/man3/tqsplitter.3qt
+++ b/doc/man/man3/tqsplitter.3qt
@@ -115,10 +115,10 @@ Inherits QFrame.
.SH RELATED FUNCTION DOCUMENTATION
.in +1c
.ti -1c
-.BI "QTextStream & \fBoperator<<\fR ( QTextStream & ts, const QSplitter & splitter )"
+.BI "TQTextStream & \fBoperator<<\fR ( TQTextStream & ts, const QSplitter & splitter )"
.br
.ti -1c
-.BI "QTextStream & \fBoperator>>\fR ( QTextStream & ts, QSplitter & splitter )"
+.BI "TQTextStream & \fBoperator>>\fR ( TQTextStream & ts, QSplitter & splitter )"
.br
.in -1c
.SH DESCRIPTION
@@ -126,7 +126,7 @@ The QSplitter class implements a splitter widget.
.PP
A splitter lets the user control the size of child widgets by dragging the boundary between the children. Any number of widgets may be controlled by a single splitter.
.PP
-To show a QListBox, a QListView and a QTextEdit side by side:
+To show a QListBox, a QListView and a TQTextEdit side by side:
.PP
.nf
.br
@@ -136,7 +136,7 @@ To show a QListBox, a QListView and a QTextEdit side by side:
.br
QListView *lv = new QListView( split );
.br
- QTextEdit *ed = new QTextEdit( split );
+ TQTextEdit *ed = new TQTextEdit( split );
.br
.fi
.PP
@@ -297,11 +297,11 @@ By default the orientation is horizontal (the widgets are side by side). The pos
.PP
Set this property's value with setOrientation() and get this property's value with orientation().
.SH RELATED FUNCTION DOCUMENTATION
-.SH "QTextStream & operator<< ( QTextStream & ts, const QSplitter & splitter )"
+.SH "TQTextStream & operator<< ( TQTextStream & ts, const QSplitter & splitter )"
Writes the sizes and the hidden state of the widgets in the splitter \fIsplitter\fR to the text stream \fIts\fR.
.PP
See also operator>>(), sizes(), and TQWidget::hidden.
-.SH "QTextStream & operator>> ( QTextStream & ts, QSplitter & splitter )"
+.SH "TQTextStream & operator>> ( TQTextStream & ts, QSplitter & splitter )"
Reads the sizes and the hidden state of the widgets in the splitter \fIsplitter\fR from the text stream \fIts\fR. The sizes must have been previously written by the operator<<() function.
.PP
See also operator<<(), setSizes(), and TQWidget::hide().