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 b85395d29..3761797b7 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -613,7 +613,7 @@ Displays a simple message box about Qt. The message includes the version number
.PP
This is useful for inclusion in the Help menu of an application. See the examples/menu/menu.cpp example.
.PP
-This function is a convenience slot for QMessageBox::aboutTQt().
+This function is a convenience slot for TQMessageBox::aboutTQt().
.SH "void QApplication::aboutToQuit ()\fC [signal]\fR"
This signal is emitted when the application is about to quit the main event loop, e.g. when the event loop level drops to zero. This may happen either after a call to quit() from inside the application or when the users shuts down the entire desktop session.
.PP
@@ -873,7 +873,7 @@ Enters the main event loop and waits until exit() is called or the main widget i
.PP
It is necessary to call this function to start event handling. The main event loop receives events from the window system and dispatches these to the application widgets.
.PP
-Generally speaking, no user interaction can take place before calling exec(). As a special case, modal widgets like QMessageBox can be used before calling exec(), because modal widgets call exec() to start a local event loop.
+Generally speaking, no user interaction can take place before calling exec(). As a special case, modal widgets like TQMessageBox can be used before calling exec(), because modal widgets call exec() to start a local event loop.
.PP
To make your application perform idle processing, i.e. executing a special function whenever there are no pending events, use a TQTimer with 0 timeout. More advanced idle processing schemes can be achieved using processEvents().
.PP
@@ -1169,7 +1169,7 @@ The event is \fInot\fR deleted when the event has been sent. The normal approach
.PP
.nf
.br
- QMouseEvent me( TQEvent::MouseButtonPress, pos, 0, 0 );
+ TQMouseEvent me( TQEvent::MouseButtonPress, pos, 0, 0 );
.br
QApplication::sendEvent( mainWindow, &me );
.br