diff options
Diffstat (limited to 'doc/man/man3/tqobject.3qt')
-rw-r--r-- | doc/man/man3/tqobject.3qt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt index 841426d75..d32be74fd 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 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 TQValidator. +-Inherited by TQAccel, TQAccessibleObject, TQAction, QApplication, TQAssistantClient, TQDataPump, TQWidget, TQCanvas, TQStyle, TQClipboard, TQDns, TQLayout, TQDragObject, TQEditorFactory, TQEventLoop, TQFileIconProvider, TQNetworkProtocol, TQNetworkOperation, TQNPInstance, TQObjectCleanupHandler, TQProcess, TQServerSocket, TQSessionManager, TQSignal, TQSignalMapper, TQSocket, TQSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, TQTranslator, TQUrlOperator, and TQValidator. .PP .SS "Public Members" .in +1c @@ -29,7 +29,7 @@ Inherits Qt. .BI "virtual const char * \fBclassName\fR () const" .br .ti -1c -.BI "virtual QMetaObject * \fBmetaObject\fR () const" +.BI "virtual TQMetaObject * \fBmetaObject\fR () const" .br .ti -1c .BI "virtual bool \fBevent\fR ( TQEvent * e )" @@ -606,17 +606,17 @@ Example: t->inherits( "TQButton" ); // returns FALSE .br .br - // TQScrollBar inherits TQWidget and QRangeControl + // TQScrollBar inherits TQWidget and TQRangeControl .br TQScrollBar *s = new TQScrollBar( 0 ); .br s->inherits( "TQWidget" ); // returns TRUE .br - s->inherits( "QRangeControl" ); // returns FALSE + s->inherits( "TQRangeControl" ); // returns FALSE .br .fi .PP -(QRangeControl is not a TQObject.) +(TQRangeControl is not a TQObject.) .PP See also isA() and metaObject(). .PP @@ -738,7 +738,7 @@ Kills all timers that this object has started. \fBWarning:\fR Using this function can cause hard-to-find bugs: it kills timers started by sub- and superclasses as well as those started by you, which is often not what you want. We recommend using a TQTimer or perhaps killTimer(). .PP See also timerEvent(), startTimer(), and killTimer(). -.SH "QMetaObject * TQObject::metaObject () const\fC [virtual]\fR" +.SH "TQMetaObject * TQObject::metaObject () const\fC [virtual]\fR" Returns a pointer to the meta object of this object. .PP A meta object contains information about a class that inherits TQObject, e.g. class name, superclass name, properties, signals and slots. Every class that contains the TQ_OBJECT macro will also have a meta object. @@ -771,7 +771,7 @@ If no such property exists, the returned variant is invalid. .PP Information about all available properties are provided through the metaObject(). .PP -See also setProperty(), QVariant::isValid(), metaObject(), QMetaObject::propertyNames(), and QMetaObject::property(). +See also setProperty(), QVariant::isValid(), metaObject(), TQMetaObject::propertyNames(), and TQMetaObject::property(). .PP Example: qutlook/centralwidget.cpp. .SH "TQObjectList * TQObject::queryList ( const char * inheritsClass = 0, const char * objName = 0, bool regexpMatch = TRUE, bool recursiveSearch = TRUE ) const" @@ -844,7 +844,7 @@ Returns TRUE if the operation was successful; otherwise returns FALSE. .PP Information about all available properties is provided through the metaObject(). .PP -See also property(), metaObject(), QMetaObject::propertyNames(), and QMetaObject::property(). +See also property(), metaObject(), TQMetaObject::propertyNames(), and TQMetaObject::property(). .PP Example: qutlook/centralwidget.cpp. .SH "bool TQObject::signalsBlocked () const" |