summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqobject.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqobject.3qt')
-rw-r--r--doc/man/man3/tqobject.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 5c2e2e24..d0d63c1d 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -15,7 +15,7 @@ All the functions in this class are reentrant when TQt is built with thread supp
.PP
Inherits Qt.
.PP
--Inherited by QAccel, QAccessibleObject, TQAction, QApplication, QAssistantClient, TQDataPump, TQWidget, TQCanvas, TQStyle, TQClipboard, TQDns, TQLayout, TQDragObject, TQEditorFactory, TQEventLoop, TQFileIconProvider, TQNetworkProtocol, TQNetworkOperation, QNPInstance, TQObjectCleanupHandler, TQProcess, TQServerSocket, TQSessionManager, TQSignal, TQSignalMapper, TQSocket, TQSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, TQTranslator, TQUrlOperator, and QValidator.
+-Inherited by TQAccel, TQAccessibleObject, TQAction, QApplication, TQAssistantClient, TQDataPump, TQWidget, TQCanvas, TQStyle, TQClipboard, TQDns, TQLayout, TQDragObject, TQEditorFactory, TQEventLoop, TQFileIconProvider, TQNetworkProtocol, TQNetworkOperation, QNPInstance, TQObjectCleanupHandler, TQProcess, TQServerSocket, TQSessionManager, TQSignal, TQSignalMapper, TQSocket, TQSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, TQTranslator, TQUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
@@ -167,10 +167,10 @@ Inherits Qt.
.BI "virtual void \fBtimerEvent\fR ( TQTimerEvent * )"
.br
.ti -1c
-.BI "virtual void \fBchildEvent\fR ( QChildEvent * )"
+.BI "virtual void \fBchildEvent\fR ( TQChildEvent * )"
.br
.ti -1c
-.BI "virtual void \fBcustomEvent\fR ( QCustomEvent * )"
+.BI "virtual void \fBcustomEvent\fR ( TQCustomEvent * )"
.br
.ti -1c
.BI "virtual void \fBconnectNotify\fR ( const char * signal )"
@@ -254,7 +254,7 @@ Searches the children and optionally grandchildren of this object, and returns a
If \fIrecursiveSearch\fR is TRUE (the default), child() performs a depth-first search of the object's children.
.PP
If there is no such object, this function returns 0. If there are more than one, the first one found is retured; if you need all of them, use queryList().
-.SH "void TQObject::childEvent ( QChildEvent * )\fC [virtual protected]\fR"
+.SH "void TQObject::childEvent ( TQChildEvent * )\fC [virtual protected]\fR"
This event handler can be reimplemented in a subclass to receive child events.
.PP
Child events are sent to objects when children are inserted or removed.
@@ -272,7 +272,7 @@ If you change state based on \fCChildInserted\fR events, call TQWidget::constPol
.fi
in functions that depend on the state. One notable example is TQWidget::sizeHint().
.PP
-See also event() and QChildEvent.
+See also event() and TQChildEvent.
.PP
Reimplemented in TQMainWindow and QSplitter.
.SH "const TQObjectList * TQObject::children () const"
@@ -381,10 +381,10 @@ This virtual function is called when something has been connected to \fIsignal\f
\fBWarning:\fR This function violates the object-oriented principle of modularity. However, it might be useful when you need to perform expensive initialization only if something is connected to a signal.
.PP
See also connect() and disconnectNotify().
-.SH "void TQObject::customEvent ( QCustomEvent * )\fC [virtual protected]\fR"
-This event handler can be reimplemented in a subclass to receive custom events. Custom events are user-defined events with a type value at least as large as the "User" item of the TQEvent::Type enum, and is typically a QCustomEvent or QCustomEvent subclass.
+.SH "void TQObject::customEvent ( TQCustomEvent * )\fC [virtual protected]\fR"
+This event handler can be reimplemented in a subclass to receive custom events. Custom events are user-defined events with a type value at least as large as the "User" item of the TQEvent::Type enum, and is typically a TQCustomEvent or TQCustomEvent subclass.
.PP
-See also event() and QCustomEvent.
+See also event() and TQCustomEvent.
.SH "void TQObject::deleteLater ()\fC [slot]\fR"
Performs a deferred deletion of this object.
.PP
@@ -583,7 +583,7 @@ Notice in the example above that unhandled events are passed to the base class's
.PP
See also installEventFilter().
.PP
-Reimplemented in QAccel, TQScrollView, and TQSpinBox.
+Reimplemented in TQAccel, TQScrollView, and TQSpinBox.
.SH "bool TQObject::highPriority () const"
Returns TRUE if the object is a high-priority object, or FALSE if it is a standard-priority object.
.PP
@@ -701,7 +701,7 @@ And here's how to install it on two widgets:
.br
.fi
.PP
-The QAccel class, for example, uses this technique to intercept accelerator key presses.
+The TQAccel class, for example, uses this technique to intercept accelerator key presses.
.PP
\fBWarning:\fR If you delete the receiver object in your eventFilter() function, be sure to return TRUE. If you return FALSE, TQt sends the event to the deleted object and the program will crash.
.PP