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.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 9d0c29a1..4d0e92de 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, QAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
+-Inherited by QAccel, QAccessibleObject, TQAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, TQSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
@@ -274,7 +274,7 @@ in functions that depend on the state. One notable example is TQWidget::sizeHint
.PP
See also event() and QChildEvent.
.PP
-Reimplemented in QMainWindow and QSplitter.
+Reimplemented in TQMainWindow and QSplitter.
.SH "const TQObjectList * TQObject::children () const"
Returns a list of child objects, or 0 if this object has no children.
.PP
@@ -509,7 +509,7 @@ Example:
.PP
.nf
.br
- class MyMainWindow : public QMainWindow
+ class MyMainWindow : public TQMainWindow
.br
{
.br
@@ -532,7 +532,7 @@ Example:
.br
MyMainWindow::MyMainWindow( TQWidget *parent, const char *name )
.br
- : QMainWindow( parent, name )
+ : TQMainWindow( parent, name )
.br
{
.br
@@ -569,7 +569,7 @@ Example:
.br
// pass the event on to the parent class
.br
- return QMainWindow::eventFilter( obj, ev );
+ return TQMainWindow::eventFilter( obj, ev );
.br
}
.br
@@ -779,7 +779,7 @@ Searches the children and optionally grandchildren of this object, and returns a
.PP
If \fIregexpMatch\fR is TRUE (the default), \fIobjName\fR is a regular expression that the objects's names must match. The syntax is that of a QRegExp. If \fIregexpMatch\fR is FALSE, \fIobjName\fR is a string and object names must match it exactly.
.PP
-Note that \fIinheritsClass\fR uses single inheritance from TQObject, the way inherits() does. According to inherits(), QMenuBar inherits TQWidget but not QMenuData. This does not quite match reality, but is the best that can be done on the wide variety of compilers TQt supports.
+Note that \fIinheritsClass\fR uses single inheritance from TQObject, the way inherits() does. According to inherits(), TQMenuBar inherits TQWidget but not TQMenuData. This does not quite match reality, but is the best that can be done on the wide variety of compilers TQt supports.
.PP
Finally, if \fIrecursiveSearch\fR is TRUE (the default), queryList() searches \fIn\fRth-generation as well as first-generation children.
.PP