diff options
author | Michele Calgaro <[email protected]> | 2024-08-12 22:02:11 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-12 22:02:11 +0900 |
commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/man/man3/tqapplication.3qt | |
parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
download | tqt3-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.3qt | 6 |
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 |