summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqeventloop.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-09-04 11:53:23 +0900
committerMichele Calgaro <[email protected]>2024-09-04 13:56:43 +0900
commit0582c90a9ed4b965629267713f51c0da7c38b39d (patch)
treecae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/man/man3/tqeventloop.3qt
parent39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff)
downloadtqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz
tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqeventloop.3qt')
-rw-r--r--doc/man/man3/tqeventloop.3qt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man/man3/tqeventloop.3qt b/doc/man/man3/tqeventloop.3qt
index cedefb413..c73086215 100644
--- a/doc/man/man3/tqeventloop.3qt
+++ b/doc/man/man3/tqeventloop.3qt
@@ -143,7 +143,7 @@ Enters the main event loop and waits until exit() is called, and returns the val
.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