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 8bfdeb53b..1d8df8949 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -155,7 +155,7 @@ Inherits Qt.
.SS "Properties"
.in +1c
.ti -1c
-.BI "QCString \fBname\fR - the name of this object"
+.BI "TQCString \fBname\fR - the name of this object"
.br
.in -1c
.SS "Protected Members"
@@ -185,7 +185,7 @@ Inherits Qt.
.SS "Static Protected Members"
.in +1c
.ti -1c
-.BI "QCString \fBnormalizeSignalSlot\fR ( const char * signalSlot )"
+.BI "TQCString \fBnormalizeSignalSlot\fR ( const char * signalSlot )"
.br
.in -1c
.SH RELATED FUNCTION DOCUMENTATION
@@ -750,7 +750,7 @@ Returns the name of this object. See the "name" property for details.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the name of this object, or \fIdefaultName\fR if the object does not have a name.
-.SH "QCString TQObject::normalizeSignalSlot ( const char * signalSlot )\fC [static protected]\fR"
+.SH "TQCString TQObject::normalizeSignalSlot ( const char * signalSlot )\fC [static protected]\fR"
Normlizes the signal or slot definition \fIsignalSlot\fR by removing unnecessary whitespace.
.SH "const TQObjectList * TQObject::objectTrees ()\fC [static]\fR"
Returns a pointer to the list of all object trees (their root objects), or 0 if there are no objects.
@@ -777,7 +777,7 @@ Example: qutlook/centralwidget.cpp.
.SH "TQObjectList * TQObject::queryList ( const char * inheritsClass = 0, const char * objName = 0, bool regexpMatch = TRUE, bool recursiveSearch = TRUE ) const"
Searches the children and optionally grandchildren of this object, and returns a list of those objects that are named or that match \fIobjName\fR and inherit \fIinheritsClass\fR. If \fIinheritsClass\fR is 0 (the default), all classes match. If \fIobjName\fR is 0 (the default), all object names match.
.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.
+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 TQRegExp. 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(), 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
@@ -814,7 +814,7 @@ The TQObjectList class is defined in the tqobjectlist.h header file.
.PP
\fBWarning:\fR Delete the list as soon you have finished using it. The list contains pointers that may become invalid at almost any time without notice (as soon as the user closes a window you may have dangling pointers, for example).
.PP
-See also child(), children(), parent(), inherits(), name, and QRegExp.
+See also child(), children(), parent(), inherits(), name, and TQRegExp.
.SH "void TQObject::removeChild ( TQObject * obj )\fC [virtual]\fR"
Removes the child object \fIobj\fR from the list of children.
.PP
@@ -938,7 +938,7 @@ Returns a translated version of \fIsourceText\fR, or TQString::fromUtf8(\fIsourc
.PP
See also tr() and QApplication::translate().
.SS "Property Documentation"
-.SH "QCString name"
+.SH "TQCString name"
This property holds the name of this object.
.PP
You can find an object by name (and type) using child(). You can find a set of objects with queryList().