diff options
Diffstat (limited to 'doc/man/man3/tqmainwindow.3qt')
-rw-r--r-- | doc/man/man3/tqmainwindow.3qt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqmainwindow.3qt b/doc/man/man3/tqmainwindow.3qt index 1e19375e5..5ccd2c217 100644 --- a/doc/man/man3/tqmainwindow.3qt +++ b/doc/man/man3/tqmainwindow.3qt @@ -418,7 +418,7 @@ To save the layout and positions of all the dock windows do this: .PP .nf .br - QFile file( filename ); + TQFile file( filename ); .br if ( file.open( IO_WriteOnly ) ) { .br @@ -436,7 +436,7 @@ To restore the dock window positions and sizes (normally when the application is .PP .nf .br - QFile file( filename ); + TQFile file( filename ); .br if ( file.open( IO_ReadOnly ) ) { .br @@ -450,7 +450,7 @@ To restore the dock window positions and sizes (normally when the application is .br .fi .PP -The QSettings class can be used in conjunction with the streaming operators to store the application's settings. +The TQSettings class can be used in conjunction with the streaming operators to store the application's settings. .PP TQMainWindow's management of dock windows and toolbars is done transparently behind-the-scenes by QDockArea. .PP @@ -809,13 +809,13 @@ Set this property's value with setUsesTextLabel() and get this property's value .SH "TQTextStream & operator<< ( TQTextStream & ts, const TQMainWindow & mainWindow )" Writes the layout (sizes and positions) of the dock windows in the dock areas of the TQMainWindow \fImainWindow\fR, including Minimized and TornOff dock windows, to the text stream \fIts\fR. .PP -This can be used, for example, in conjunction with QSettings to save the user's layout when the \\mainWindow receives a closeEvent. +This can be used, for example, in conjunction with TQSettings to save the user's layout when the \\mainWindow receives a closeEvent. .PP See also operator>>() and closeEvent(). .SH "TQTextStream & operator>> ( TQTextStream & ts, TQMainWindow & mainWindow )" Reads the layout (sizes and positions) of the dock windows in the dock areas of the TQMainWindow \fImainWindow\fR from the text stream, \fIts\fR, including Minimized and TornOff dock windows. Restores the dock windows and dock areas to these sizes and positions. The layout information must be in the format produced by operator<<(). .PP -This can be used, for example, in conjunction with QSettings to restore the user's layout. +This can be used, for example, in conjunction with TQSettings to restore the user's layout. .PP See also operator<<(). |