summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsplashscreen.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqsplashscreen.3qt')
-rw-r--r--doc/man/man3/tqsplashscreen.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqsplashscreen.3qt b/doc/man/man3/tqsplashscreen.3qt
index 260f8e321..ade23bf8e 100644
--- a/doc/man/man3/tqsplashscreen.3qt
+++ b/doc/man/man3/tqsplashscreen.3qt
@@ -72,7 +72,7 @@ The most common usage is to show a splash screen before the main widget is displ
.br
{
.br
- QApplication app( argc, argv );
+ TQApplication app( argc, argv );
.br
TQPixmap pixmap( "splash.png" );
.br
@@ -100,7 +100,7 @@ The most common usage is to show a splash screen before the main widget is displ
.PP
It is sometimes useful to update the splash screen with messages, for example, announcing connections established or modules loaded as the application starts up. TQSplashScreen supports this with the message() function. If you wish to do your own drawing you can get a pointer to the pixmap used in the splash screen with pixmap(). Alternatively, you can subclass TQSplashScreen and reimplement drawContents().
.PP
-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 QApplication::processEvents() to receive the mouse clicks.
+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 TQApplication::processEvents() to receive the mouse clicks.
.PP
.nf
.br
@@ -151,7 +151,7 @@ See also message() and clear().
.SH "TQPixmap * TQSplashScreen::pixmap () const"
Returns the pixmap that is used in the splash screen. The image does not have any of the text drawn by message() calls.
.SH "void TQSplashScreen::repaint ()"
-This overrides TQWidget::repaint(). It differs from the standard repaint function in that it also calls QApplication::flush() to ensure the updates are displayed, even when there is no event loop present.
+This overrides TQWidget::repaint(). It differs from the standard repaint function in that it also calls TQApplication::flush() to ensure the updates are displayed, even when there is no event loop present.
.SH "void TQSplashScreen::setPixmap ( const TQPixmap & pixmap )"
Sets the pixmap that will be used as the splash screen's image to
\fIpixmap\fR.