diff options
Diffstat (limited to 'doc/html/ntqapplication.html')
-rw-r--r-- | doc/html/ntqapplication.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ntqapplication.html b/doc/html/ntqapplication.html index a542212bb..a46b69afb 100644 --- a/doc/html/ntqapplication.html +++ b/doc/html/ntqapplication.html @@ -516,7 +516,7 @@ Displays a simple message box about TQt. The message includes the version number of TQt being used by the application. <p> This is useful for inclusion in the Help menu of an application. See the examples/menu/menu.cpp example. -<p> This function is a convenience slot for <a href="ntqmessagebox.html#aboutTQt">TQMessageBox::aboutTQt</a>(). +<p> This function is a convenience slot for <a href="tqmessagebox.html#aboutTQt">TQMessageBox::aboutTQt</a>(). <h3 class=fn>void <a name="aboutToQuit"></a>TQApplication::aboutToQuit ()<tt> [signal]</tt> </h3> @@ -799,7 +799,7 @@ exit() (which is 0 if exit() is called via <a href="#quit">quit</a>()). main event loop receives events from the window system and dispatches these to the application widgets. <p> Generally speaking, no user interaction can take place before -calling <a href="#exec">exec</a>(). As a special case, modal widgets like <a href="ntqmessagebox.html">TQMessageBox</a> +calling <a href="#exec">exec</a>(). As a special case, modal widgets like <a href="tqmessagebox.html">TQMessageBox</a> can be used before calling exec(), because modal widgets call exec() to start a local event loop. <p> To make your application perform idle processing, i.e. executing a @@ -1194,7 +1194,7 @@ handler. <p> The event is <em>not</em> deleted when the event has been sent. The normal approach is to create the event on the stack, e.g. <pre> - <a href="qmouseevent.html">TQMouseEvent</a> me( TQEvent::MouseButtonPress, pos, 0, 0 ); + <a href="tqmouseevent.html">TQMouseEvent</a> me( TQEvent::MouseButtonPress, pos, 0, 0 ); TQApplication::<a href="#sendEvent">sendEvent</a>( mainWindow, &me ); </pre> |