summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqapplication.3qt')
-rw-r--r--doc/man/man3/tqapplication.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index 0b91f3d75..e5d3b9a54 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -727,7 +727,7 @@ Example:
.br
#include <ntqapplication.h>
.br
- #include <ntqlistbox.h>
+ #include <tqlistbox.h>
.br
.br
int main( int argc, char **argv )
@@ -736,7 +736,7 @@ Example:
.br
QApplication a( argc, argv );
.br
- QListBox b;
+ TQListBox b;
.br
a.setMainWidget( &b );
.br
@@ -1109,7 +1109,7 @@ See also processEvents(), exec(), and TQTimer.
.SH "void QApplication::quit ()\fC [slot]\fR"
Tells the application to exit with return code 0 (success). Equivalent to calling QApplication::exit( 0 ).
.PP
-It's common to connect the lastWindowClosed() signal to quit(), and you also often connect e.g. QButton::clicked() or signals in TQAction, TQPopupMenu or TQMenuBar to it.
+It's common to connect the lastWindowClosed() signal to quit(), and you also often connect e.g. TQButton::clicked() or signals in TQAction, TQPopupMenu or TQMenuBar to it.
.PP
Example:
.PP