diff options
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r-- | doc/man/man3/tqapplication.3qt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt index 347998f9e..7cb94cc41 100644 --- a/doc/man/man3/tqapplication.3qt +++ b/doc/man/man3/tqapplication.3qt @@ -238,10 +238,10 @@ Inherits TQObject. .BI "QFontMetrics \fBfontMetrics\fR ()" .br .ti -1c -.BI "QWidgetList * \fBallWidgets\fR ()" +.BI "TQWidgetList * \fBallWidgets\fR ()" .br .ti -1c -.BI "QWidgetList * \fBtopLevelWidgets\fR ()" +.BI "TQWidgetList * \fBtopLevelWidgets\fR ()" .br .ti -1c .BI "QDesktopWidget * \fBdesktop\fR ()" @@ -662,7 +662,7 @@ Append \fIpath\fR to the end of the library path list. If \fIpath\fR is empty or The default path list consists of a single entry, the installation directory for plugins. The default installation directory for plugins is \fCINSTALL/plugins\fR, where \fCINSTALL\fR is the directory where TQt was installed. .PP See also removeLibraryPath(), libraryPaths(), and setLibraryPaths(). -.SH "QWidgetList * QApplication::allWidgets ()\fC [static]\fR" +.SH "TQWidgetList * QApplication::allWidgets ()\fC [static]\fR" Returns a list of all the widgets in the application. .PP The list is created using \fCnew\fR and must be deleted by the caller. @@ -675,9 +675,9 @@ Example that updates all widgets: .PP .nf .br - QWidgetList *list = QApplication::allWidgets(); + TQWidgetList *list = QApplication::allWidgets(); .br - QWidgetListIt it( *list ); // iterate over the widgets + TQWidgetListIt it( *list ); // iterate over the widgets .br TQWidget * w; .br @@ -693,7 +693,7 @@ Example that updates all widgets: .br .fi .PP -The QWidgetList class is defined in the \fCntqwidgetlist.h\fR header file. +The TQWidgetList class is defined in the \fCtqwidgetlist.h\fR header file. .PP \fBWarning:\fR Delete the list as soon as you have finished using it. The widgets in the list may be deleted by someone else at any time. .PP @@ -1544,7 +1544,7 @@ See also setStyle() and QStyle. Synchronizes with the X server in the X11 implementation. This normally takes some time. Does nothing on other platforms. .PP See also flushX(). -.SH "QWidgetList * QApplication::topLevelWidgets ()\fC [static]\fR" +.SH "TQWidgetList * QApplication::topLevelWidgets ()\fC [static]\fR" Returns a list of the top level widgets in the application. .PP The list is created using \fCnew\fR and must be deleted by the caller. @@ -1559,9 +1559,9 @@ Example: .br // Show all hidden top level widgets. .br - QWidgetList *list = QApplication::topLevelWidgets(); + TQWidgetList *list = QApplication::topLevelWidgets(); .br - QWidgetListIt it( *list ); // iterate over the widgets + TQWidgetListIt it( *list ); // iterate over the widgets .br TQWidget * w; .br |