summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqapplication.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-08-12 22:02:11 +0900
committerMichele Calgaro <[email protected]>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqapplication.3qt
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.tar.gz
tqt3-42957a3f812a1db64a9ae452baa2d3fbc35f2466.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
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