summaryrefslogtreecommitdiffstats
path: root/doc/html/tqsplashscreen.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqsplashscreen.html')
-rw-r--r--doc/html/tqsplashscreen.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqsplashscreen.html b/doc/html/tqsplashscreen.html
index 831fea0a8..138570743 100644
--- a/doc/html/tqsplashscreen.html
+++ b/doc/html/tqsplashscreen.html
@@ -82,17 +82,17 @@ following code snippet.
<p> <pre>
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> app( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> app( argc, argv );
<a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" );
TQSplashScreen *splash = new TQSplashScreen( pixmap );
splash-&gt;<a href="tqwidget.html#show">show</a>();
<a href="tqmainwindow.html">TQMainWindow</a> *mainWin = new <a href="tqmainwindow.html">TQMainWindow</a>;
...
- app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( mainWin );
+ app.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( mainWin );
mainWin-&gt;<a href="tqwidget.html#show">show</a>();
splash-&gt;<a href="#finish">finish</a>( mainWin );
delete splash;
- return app.<a href="ntqapplication.html#exec">exec</a>();
+ return app.<a href="tqapplication.html#exec">exec</a>();
}
</pre>
@@ -106,17 +106,17 @@ Alternatively, you can subclass TQSplashScreen and reimplement
<p> The user can hide the splash screen by clicking on it with the
mouse. Since the splash screen is typically displayed before the
event loop has started running, it is necessary to periodically
-call <a href="ntqapplication.html#processEvents">TQApplication::processEvents</a>() to receive the mouse clicks.
+call <a href="tqapplication.html#processEvents">TQApplication::processEvents</a>() to receive the mouse clicks.
<p> <pre>
<a href="tqpixmap.html">TQPixmap</a> pixmap( "splash.png" );
TQSplashScreen *splash = new TQSplashScreen( pixmap );
splash-&gt;<a href="tqwidget.html#show">show</a>();
... // Loading some items
splash-&gt;<a href="#message">message</a>( "Loaded modules" );
- tqApp-&gt;<a href="ntqapplication.html#processEvents">processEvents</a>();
+ tqApp-&gt;<a href="tqapplication.html#processEvents">processEvents</a>();
... // Establishing connections
splash-&gt;<a href="#message">message</a>( "Established connections" );
- tqApp-&gt;<a href="ntqapplication.html#processEvents">processEvents</a>();
+ tqApp-&gt;<a href="tqapplication.html#processEvents">processEvents</a>();
</pre>
<p> <p>See also <a href="misc.html">Miscellaneous Classes</a>.
@@ -170,7 +170,7 @@ does not have any of the text drawn by <a href="#message">message</a>() calls.
<h3 class=fn>void <a name="repaint"></a>TQSplashScreen::repaint ()
</h3>
This overrides <a href="tqwidget.html#repaint">TQWidget::repaint</a>(). It differs from the standard
-repaint function in that it also calls <a href="ntqapplication.html#flush">TQApplication::flush</a>() to
+repaint function in that it also calls <a href="tqapplication.html#flush">TQApplication::flush</a>() to
ensure the updates are displayed, even when there is no event loop
present.