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.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index 2ec4512b..56a54638 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -370,10 +370,10 @@ Inherits TQObject.
.BI "int \fBhorizontalAlignment\fR ( int align )"
.br
.ti -1c
-.BI "bool \fBisEffectEnabled\fR ( Qt::UIEffect effect )"
+.BI "bool \fBisEffectEnabled\fR ( TQt::UIEffect effect )"
.br
.ti -1c
-.BI "void \fBsetEffectEnabled\fR ( Qt::UIEffect effect, bool enable = TRUE )"
+.BI "void \fBsetEffectEnabled\fR ( TQt::UIEffect effect, bool enable = TRUE )"
.br
.ti -1c
.BI "QWSDecoration & \fBqwsDecoration\fR ()"
@@ -967,14 +967,14 @@ Multiple message files can be installed. Translations are searched for in the la
See also removeTranslator(), translate(), and QTranslator::load().
.PP
Example: i18n/main.cpp.
-.SH "bool QApplication::isEffectEnabled ( Qt::UIEffect effect )\fC [static]\fR"
+.SH "bool QApplication::isEffectEnabled ( TQt::UIEffect effect )\fC [static]\fR"
Returns TRUE if \fIeffect\fR is enabled; otherwise returns FALSE.
.PP
By default, TQt will try to use the desktop settings. Call setDesktopSettingsAware(FALSE) to prevent this.
.PP
Note: All effects are disabled on screens running at less than 16-bit color depth.
.PP
-See also setEffectEnabled() and Qt::UIEffect.
+See also setEffectEnabled() and TQt::UIEffect.
.SH "bool QApplication::isSessionRestored () const"
Returns TRUE if the application has been restored from an earlier session; otherwise returns FALSE.
.PP
@@ -1330,12 +1330,12 @@ Sets the time limit that distinguishes a double click from two consecutive mouse
Note that on Microsoft Windows, calling this function sets the double click interval for all windows.
.PP
See also doubleClickInterval().
-.SH "void QApplication::setEffectEnabled ( Qt::UIEffect effect, bool enable = TRUE )\fC [static]\fR"
+.SH "void QApplication::setEffectEnabled ( TQt::UIEffect effect, bool enable = TRUE )\fC [static]\fR"
Enables the UI effect \fIeffect\fR if \fIenable\fR is TRUE, otherwise the effect will not be used.
.PP
Note: All effects are disabled on screens running at less than 16-bit color depth.
.PP
-See also isEffectEnabled(), Qt::UIEffect, and setDesktopSettingsAware().
+See also isEffectEnabled(), TQt::UIEffect, and setDesktopSettingsAware().
.SH "void QApplication::setFont ( const QFont & font, bool informWidgets = FALSE, const char * className = 0 )\fC [static]\fR"
Changes the default application font to \fIfont\fR. If \fIinformWidgets\fR is TRUE, then existing widgets are informed about the change and may adjust themselves to the new application setting. If \fIinformWidgets\fR is FALSE, the change only affects newly created widgets. If \fIclassName\fR is passed, the change applies only to classes that inherit \fIclassName\fR (as reported by TQObject::inherits()).
.PP
@@ -1427,7 +1427,7 @@ Example:
.PP
.nf
.br
- QApplication::setOverrideCursor( QCursor(Qt::WaitCursor) );
+ QApplication::setOverrideCursor( QCursor(TQt::WaitCursor) );
.br
calculateHugeMandelbrot(); // lunch time...
.br