summaryrefslogtreecommitdiffstats
path: root/doc/man/man3
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3')
-rw-r--r--doc/man/man3/tqaccessibleobject.3qt4
-rw-r--r--doc/man/man3/tqaxbase.3qt2
-rw-r--r--doc/man/man3/tqcloseevent.3qt2
-rw-r--r--doc/man/man3/tqevent.3qt4
-rw-r--r--doc/man/man3/tqguardedptr.3qt4
-rw-r--r--doc/man/man3/tqlistviewitem.3qt2
-rw-r--r--doc/man/man3/tqobject.3qt36
-rw-r--r--doc/man/man3/tqobjectcleanuphandler.3qt30
-rw-r--r--doc/man/man3/tqobjectlist.3qt28
-rw-r--r--doc/man/man3/tqobjectlistiterator.3qt22
-rw-r--r--doc/man/man3/tqptrlist.3qt2
-rw-r--r--doc/man/man3/tqptrlistiterator.3qt2
-rw-r--r--doc/man/man3/tqsignal.3qt2
-rw-r--r--doc/man/man3/tqsignalmapper.3qt2
14 files changed, 71 insertions, 71 deletions
diff --git a/doc/man/man3/tqaccessibleobject.3qt b/doc/man/man3/tqaccessibleobject.3qt
index 32612c43..6c920b2b 100644
--- a/doc/man/man3/tqaccessibleobject.3qt
+++ b/doc/man/man3/tqaccessibleobject.3qt
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QAccessibleObject \- Implements parts of the QAccessibleInterface for QObjects
+QAccessibleObject \- Implements parts of the QAccessibleInterface for TQObjects
.SH SYNOPSIS
\fC#include <ntqaccessible.h>\fR
.PP
@@ -29,7 +29,7 @@ Inherits TQObject and QAccessibleInterface.
.br
.in -1c
.SH DESCRIPTION
-The QAccessibleObject class implements parts of the QAccessibleInterface for QObjects.
+The QAccessibleObject class implements parts of the QAccessibleInterface for TQObjects.
.PP
This class is mainly provided for convenience. All subclasses of the QAccessibleInterface should use this class as the base class.
.PP
diff --git a/doc/man/man3/tqaxbase.3qt b/doc/man/man3/tqaxbase.3qt
index 7d8a68b7..fc0f1969 100644
--- a/doc/man/man3/tqaxbase.3qt
+++ b/doc/man/man3/tqaxbase.3qt
@@ -124,7 +124,7 @@ QAxBase is an abstract class that cannot be used directly, and is instantiated t
.br
.fi
.PP
-Properties exposed by the object's IDispatch implementation can be read and written through the property system provided by the TQt Object Model (both subclasses are QObjects, so you can use setProperty() and property() as with TQObject). Properties with multiple parameters are not supported.
+Properties exposed by the object's IDispatch implementation can be read and written through the property system provided by the TQt Object Model (both subclasses are TQObjects, so you can use setProperty() and property() as with TQObject). Properties with multiple parameters are not supported.
.PP
.nf
.br
diff --git a/doc/man/man3/tqcloseevent.3qt b/doc/man/man3/tqcloseevent.3qt
index 6815f72b..825cf21a 100644
--- a/doc/man/man3/tqcloseevent.3qt
+++ b/doc/man/man3/tqcloseevent.3qt
@@ -43,7 +43,7 @@ The closeEvent() in the Application Walkthrough shows a close event handler that
.PP
If you want the widget to be deleted when it is closed, create it with the WDestructiveClose widget flag. This is very useful for independent top-level windows in a multi-window application.
.PP
-QObjects emits the destroyed() signal when they are deleted.
+TQObjects emits the destroyed() signal when they are deleted.
.PP
If the last top-level window is closed, the QApplication::lastWindowClosed() signal is emitted.
.PP
diff --git a/doc/man/man3/tqevent.3qt b/doc/man/man3/tqevent.3qt
index f647ed96..09f57429 100644
--- a/doc/man/man3/tqevent.3qt
+++ b/doc/man/man3/tqevent.3qt
@@ -36,11 +36,11 @@ Inherited by QTimerEvent, QMouseEvent, QWheelEvent, QTabletEvent, QKeyEvent, QFo
.SH DESCRIPTION
The QEvent class is the base class of all event classes. Event objects contain event parameters.
.PP
-Qt's main event loop (QApplication::exec()) fetches native window system events from the event queue, translates them into QEvents and sends the translated events to QObjects.
+Qt's main event loop (QApplication::exec()) fetches native window system events from the event queue, translates them into QEvents and sends the translated events to TQObjects.
.PP
In general, events come from the underlying window system (spontaneous() returns TRUE) but it is also possible to manually send events using QApplication::sendEvent() and QApplication::postEvent() (spontaneous() returns FALSE).
.PP
-QObjects receive events by having their TQObject::event() function called. The function can be reimplemented in subclasses to customize event handling and add additional event types; TQWidget::event() is a notable example. By default, events are dispatched to event handlers like TQObject::timerEvent() and TQWidget::mouseMoveEvent(). TQObject::installEventFilter() allows an object to intercept events destined for another object.
+TQObjects receive events by having their TQObject::event() function called. The function can be reimplemented in subclasses to customize event handling and add additional event types; TQWidget::event() is a notable example. By default, events are dispatched to event handlers like TQObject::timerEvent() and TQWidget::mouseMoveEvent(). TQObject::installEventFilter() allows an object to intercept events destined for another object.
.PP
The basic QEvent contains only an event type parameter. Subclasses of QEvent contain additional parameters that describe the particular event.
.PP
diff --git a/doc/man/man3/tqguardedptr.3qt b/doc/man/man3/tqguardedptr.3qt
index cd28f973..580a8b95 100644
--- a/doc/man/man3/tqguardedptr.3qt
+++ b/doc/man/man3/tqguardedptr.3qt
@@ -7,7 +7,7 @@
.ad l
.nh
.SH NAME
-QGuardedPtr \- Template class that provides guarded pointers to QObjects
+QGuardedPtr \- Template class that provides guarded pointers to TQObjects
.SH SYNOPSIS
\fC#include <ntqguardedptr.h>\fR
.PP
@@ -51,7 +51,7 @@ QGuardedPtr \- Template class that provides guarded pointers to QObjects
.br
.in -1c
.SH DESCRIPTION
-The QGuardedPtr class is a template class that provides guarded pointers to QObjects.
+The QGuardedPtr class is a template class that provides guarded pointers to TQObjects.
.PP
A guarded pointer, \fCQGuardedPtr<X>\fR, behaves like a normal C++ pointer \fCX*\fR, except that it is automatically set to 0 when the referenced object is destroyed (unlike normal C++ pointers, which become "dangling pointers" in such cases). \fCX\fR must be a subclass of TQObject.
.PP
diff --git a/doc/man/man3/tqlistviewitem.3qt b/doc/man/man3/tqlistviewitem.3qt
index 908e441b..46d85ae0 100644
--- a/doc/man/man3/tqlistviewitem.3qt
+++ b/doc/man/man3/tqlistviewitem.3qt
@@ -257,7 +257,7 @@ The parent must be another QListViewItem or a QListView. If the parent is a QLis
.PP
If you keep the pointer, you can set or change the texts using setText(), add pixmaps using setPixmap(), change its mode using setSelectable(), setSelected(), setOpen() and setExpandable(). You'll also be able to change its height using setHeight(), and traverse its sub-items. You don't have to keep the pointer since you can get a pointer to any QListViewItem in a QListView using QListView::selectedItem(), QListView::currentItem(), QListView::firstChild(), QListView::lastItem() and QListView::findItem().
.PP
-If you call \fCdelete\fR on a list view item, it will be deleted as expected, and as usual for QObjects, if it has any child items (to any depth), all these will be deleted too.
+If you call \fCdelete\fR on a list view item, it will be deleted as expected, and as usual for TQObjects, if it has any child items (to any depth), all these will be deleted too.
.PP
QCheckListItems are list view items that have a checkbox or radio button and can be used in place of plain QListViewItems.
.PP
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 1ed6f43e..49b13fad 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -11,11 +11,11 @@ TQObject \- The base class of all TQt objects
.SH SYNOPSIS
All the functions in this class are reentrant when TQt is built with thread support.</p>
.PP
-\fC#include <ntqobject.h>\fR
+\fC#include <tqobject.h>\fR
.PP
Inherits Qt.
.PP
-Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, QAxObject, QAxScript, QAxScriptManager, TQWidget, QCanvas, QStyle, QClipboard, QCopChannel, QDns, QLayout, QDragObject, QEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QWSKeyboardHandler, QNetworkOperation, QNPInstance, QObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, QSqlDatabase, QSqlDriver, QSqlForm, QStyleSheet, QTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
+Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, QAxObject, QAxScript, QAxScriptManager, TQWidget, QCanvas, QStyle, QClipboard, QCopChannel, QDns, QLayout, QDragObject, QEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QWSKeyboardHandler, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, QSqlDatabase, QSqlDriver, QSqlForm, QStyleSheet, QTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c
@@ -77,10 +77,10 @@ Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient,
.BI "TQObject * \fBchild\fR ( const char * objName, const char * inheritsClass = 0, bool recursiveSearch = TRUE )"
.br
.ti -1c
-.BI "const QObjectList * \fBchildren\fR () const"
+.BI "const TQObjectList * \fBchildren\fR () const"
.br
.ti -1c
-.BI "QObjectList * \fBqueryList\fR ( const char * inheritsClass = 0, const char * objName = 0, bool regexpMatch = TRUE, bool recursiveSearch = TRUE ) const"
+.BI "TQObjectList * \fBqueryList\fR ( const char * inheritsClass = 0, const char * objName = 0, bool regexpMatch = TRUE, bool recursiveSearch = TRUE ) const"
.br
.ti -1c
.BI "virtual void \fBinsertChild\fR ( TQObject * obj )"
@@ -143,7 +143,7 @@ Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient,
.BI "TQString \fBtrUtf8\fR ( const char * sourceText, const char * comment )"
.br
.ti -1c
-.BI "const QObjectList * \fBobjectTrees\fR ()"
+.BI "const TQObjectList * \fBobjectTrees\fR ()"
.br
.ti -1c
.BI "bool \fBconnect\fR ( const TQObject * sender, const char * signal, const TQObject * receiver, const char * member )"
@@ -199,13 +199,13 @@ The TQObject class is the base class of all TQt objects.
.PP
TQObject is the heart of the TQt object model. The central feature in this model is a very powerful mechanism for seamless object communication called signals and slots. You can connect a signal to a slot with connect() and destroy the connection with disconnect(). To avoid never ending notification loops you can temporarily block signals with blockSignals(). The protected functions connectNotify() and disconnectNotify() make it possible to track connections.
.PP
-QObjects organize themselves in object trees. When you create a TQObject with another object as parent, the object will automatically do an insertChild() on the parent and thus show up in the parent's children() list. The parent takes ownership of the object i.e. it will automatically delete its children in its destructor. You can look for an object by name and optionally type using child() or queryList(), and get the list of tree roots using objectTrees().
+TQObjects organize themselves in object trees. When you create a TQObject with another object as parent, the object will automatically do an insertChild() on the parent and thus show up in the parent's children() list. The parent takes ownership of the object i.e. it will automatically delete its children in its destructor. You can look for an object by name and optionally type using child() or queryList(), and get the list of tree roots using objectTrees().
.PP
Every object has an object name() and can report its className() and whether it inherits() another class in the TQObject inheritance hierarchy.
.PP
-When an object is deleted, it emits a destroyed() signal. You can catch this signal to avoid dangling references to QObjects. The QGuardedPtr class provides an elegant way to use this feature.
+When an object is deleted, it emits a destroyed() signal. You can catch this signal to avoid dangling references to TQObjects. The QGuardedPtr class provides an elegant way to use this feature.
.PP
-QObjects can receive events through event() and filter the events of other objects. See installEventFilter() and eventFilter() for details. A convenience handler, childEvent(), can be reimplemented to catch child events.
+TQObjects can receive events through event() and filter the events of other objects. See installEventFilter() and eventFilter() for details. A convenience handler, childEvent(), can be reimplemented to catch child events.
.PP
Last but not least, TQObject provides the basic timer support in Qt; see QTimer for high-level support for timers.
.PP
@@ -213,7 +213,7 @@ Notice that the TQ_OBJECT macro is mandatory for any object that implements sign
.PP
All TQt widgets inherit TQObject. The convenience function isWidgetType() returns whether an object is actually a widget. It is much faster than inherits( "TQWidget" ).
.PP
-Some TQObject functions, e.g. children(), objectTrees() and queryList() return a QObjectList. A QObjectList is a QPtrList of QObjects. QObjectLists support the same operations as QPtrLists and have an iterator class, QObjectListIt.
+Some TQObject functions, e.g. children(), objectTrees() and queryList() return a TQObjectList. A TQObjectList is a QPtrList of TQObjects. TQObjectLists support the same operations as QPtrLists and have an iterator class, TQObjectListIt.
.PP
See also Object Model.
.SH MEMBER FUNCTION DOCUMENTATION
@@ -275,10 +275,10 @@ in functions that depend on the state. One notable example is TQWidget::sizeHint
See also event() and QChildEvent.
.PP
Reimplemented in QMainWindow and QSplitter.
-.SH "const QObjectList * TQObject::children () const"
+.SH "const TQObjectList * TQObject::children () const"
Returns a list of child objects, or 0 if this object has no children.
.PP
-The QObjectList class is defined in the ntqobjectlist.h header file.
+The TQObjectList class is defined in the tqobjectlist.h header file.
.PP
The first child added is the first object in the list and the last child added is the last object in the list, i.e. new children are appended at the end.
.PP
@@ -752,10 +752,10 @@ This is an overloaded member function, provided for convenience. It behaves esse
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"
Normlizes the signal or slot definition \fIsignalSlot\fR by removing unnecessary whitespace.
-.SH "const QObjectList * TQObject::objectTrees ()\fC [static]\fR"
+.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.
.PP
-The QObjectList class is defined in the ntqobjectlist.h header file.
+The TQObjectList class is defined in the tqobjectlist.h header file.
.PP
The most recent root object created is the first object in the list and the first root object added is the last object in the list.
.PP
@@ -774,7 +774,7 @@ Information about all available properties are provided through the metaObject()
See also setProperty(), QVariant::isValid(), metaObject(), QMetaObject::propertyNames(), and QMetaObject::property().
.PP
Example: qutlook/centralwidget.cpp.
-.SH "QObjectList * TQObject::queryList ( const char * inheritsClass = 0, const char * objName = 0, bool regexpMatch = TRUE, bool recursiveSearch = TRUE ) const"
+.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.
@@ -789,9 +789,9 @@ This somewhat contrived example disables all the buttons in this window:
.PP
.nf
.br
- QObjectList *l = topLevelWidget()->queryList( "QButton" );
+ TQObjectList *l = topLevelWidget()->queryList( "QButton" );
.br
- QObjectListIt it( *l ); // iterate over the buttons
+ TQObjectListIt it( *l ); // iterate over the buttons
.br
TQObject *obj;
.br
@@ -810,7 +810,7 @@ This somewhat contrived example disables all the buttons in this window:
.br
.fi
.PP
-The QObjectList class is defined in the ntqobjectlist.h header file.
+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
@@ -977,7 +977,7 @@ Returns 0 if there is no such child.
.fi
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqobject.html
+.BR http://doc.trolltech.com/tqobject.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqobjectcleanuphandler.3qt b/doc/man/man3/tqobjectcleanuphandler.3qt
index b3ef904a..3b5e53e7 100644
--- a/doc/man/man3/tqobjectcleanuphandler.3qt
+++ b/doc/man/man3/tqobjectcleanuphandler.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QObjectCleanupHandler 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQObjectCleanupHandler 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,9 +7,9 @@
.ad l
.nh
.SH NAME
-QObjectCleanupHandler \- Watches the lifetime of multiple QObjects
+TQObjectCleanupHandler \- Watches the lifetime of multiple TQObjects
.SH SYNOPSIS
-\fC#include <ntqobjectcleanuphandler.h>\fR
+\fC#include <tqobjectcleanuphandler.h>\fR
.PP
Inherits TQObject.
.PP
@@ -19,7 +19,7 @@ Inherits TQObject.
.BI "\fBQObjectCleanupHandler\fR ()"
.br
.ti -1c
-.BI "\fB~QObjectCleanupHandler\fR ()"
+.BI "\fB~TQObjectCleanupHandler\fR ()"
.br
.ti -1c
.BI "TQObject * \fBadd\fR ( TQObject * object )"
@@ -35,9 +35,9 @@ Inherits TQObject.
.br
.in -1c
.SH DESCRIPTION
-The QObjectCleanupHandler class watches the lifetime of multiple QObjects.
+The TQObjectCleanupHandler class watches the lifetime of multiple TQObjects.
.PP
-A QObjectCleanupHandler is useful whenever you need to know when a number of QObjects that are owned by someone else have been deleted. This is important, for example, when referencing memory in an application that has been allocated in a shared library.
+A TQObjectCleanupHandler is useful whenever you need to know when a number of TQObjects that are owned by someone else have been deleted. This is important, for example, when referencing memory in an application that has been allocated in a shared library.
.PP
Example:
.PP
@@ -64,7 +64,7 @@ Example:
.br
private:
.br
- QObjectCleanupHandler objects;
+ TQObjectCleanupHandler objects;
.br
};
.br
@@ -112,22 +112,22 @@ Example:
.PP
See also Object Model.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QObjectCleanupHandler::QObjectCleanupHandler ()"
-Constructs an empty QObjectCleanupHandler.
-.SH "QObjectCleanupHandler::~QObjectCleanupHandler ()"
+.SH "TQObjectCleanupHandler::TQObjectCleanupHandler ()"
+Constructs an empty TQObjectCleanupHandler.
+.SH "TQObjectCleanupHandler::~TQObjectCleanupHandler ()"
Destroys the cleanup handler. All objects in this cleanup handler will be deleted.
-.SH "TQObject * QObjectCleanupHandler::add ( TQObject * object )"
+.SH "TQObject * TQObjectCleanupHandler::add ( TQObject * object )"
Adds \fIobject\fR to this cleanup handler and returns the pointer to the object.
-.SH "void QObjectCleanupHandler::clear ()"
+.SH "void TQObjectCleanupHandler::clear ()"
Deletes all objects in this cleanup handler. The cleanup handler becomes empty.
-.SH "bool QObjectCleanupHandler::isEmpty () const"
+.SH "bool TQObjectCleanupHandler::isEmpty () const"
Returns TRUE if this cleanup handler is empty or if all objects in this cleanup handler have been destroyed; otherwise return FALSE.
-.SH "void QObjectCleanupHandler::remove ( TQObject * object )"
+.SH "void TQObjectCleanupHandler::remove ( TQObject * object )"
Removes the \fIobject\fR from this cleanup handler. The object will
not be destroyed.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqobjectcleanuphandler.html
+.BR http://doc.trolltech.com/tqobjectcleanuphandler.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqobjectlist.3qt b/doc/man/man3/tqobjectlist.3qt
index 753ab9b2..5978515f 100644
--- a/doc/man/man3/tqobjectlist.3qt
+++ b/doc/man/man3/tqobjectlist.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QObjectList 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQObjectList 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,9 +7,9 @@
.ad l
.nh
.SH NAME
-QObjectList \- QPtrList of QObjects
+TQObjectList \- QPtrList of TQObjects
.SH SYNOPSIS
-\fC#include <ntqobjectlist.h>\fR
+\fC#include <tqobjectlist.h>\fR
.PP
Inherits QPtrList<TQObject>.
.PP
@@ -19,44 +19,44 @@ Inherits QPtrList<TQObject>.
.BI "\fBQObjectList\fR ()"
.br
.ti -1c
-.BI "\fBQObjectList\fR ( const QObjectList & list )"
+.BI "\fBQObjectList\fR ( const TQObjectList & list )"
.br
.ti -1c
-.BI "\fB~QObjectList\fR ()"
+.BI "\fB~TQObjectList\fR ()"
.br
.ti -1c
-.BI "QObjectList & \fBoperator=\fR ( const QObjectList & list )"
+.BI "TQObjectList & \fBoperator=\fR ( const TQObjectList & list )"
.br
.in -1c
.SH DESCRIPTION
-The QObjectList class is a QPtrList of QObjects.
+The TQObjectList class is a QPtrList of TQObjects.
.PP
-A QObjectList is a QPtrList<TQObject>. The list can be traversed using inherited functions, e.g. getFirst(), next(), etc., or using a QObjectListIterator iterator.
+A TQObjectList is a QPtrList<TQObject>. The list can be traversed using inherited functions, e.g. getFirst(), next(), etc., or using a TQObjectListIterator iterator.
.PP
See TQObject::queryList() for an example of use.
.PP
-See also QObjectListIterator, TQObject, Collection Classes, and Non-GUI Classes.
+See also TQObjectListIterator, TQObject, Collection Classes, and Non-GUI Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QObjectList::QObjectList ()"
+.SH "TQObjectList::TQObjectList ()"
Constructs an empty TQObject list.
-.SH "QObjectList::QObjectList ( const QObjectList & list )"
+.SH "TQObjectList::TQObjectList ( const TQObjectList & list )"
Constructs a copy of \fIlist\fR.
.PP
Each item in \fIlist\fR is appended to this list. Only the pointers are copied (shallow copy).
-.SH "QObjectList::~QObjectList ()"
+.SH "TQObjectList::~TQObjectList ()"
Removes all the object pointers from the list and destroys the list.
.PP
All list iterators that access this list will be reset.
.PP
See also setAutoDelete().
-.SH "QObjectList & QObjectList::operator= ( const QObjectList & list )"
+.SH "TQObjectList & TQObjectList::operator= ( const TQObjectList & list )"
Assigns \fIlist\fR to this list and returns a reference to this list.
.PP
This list is first cleared and then each item in \fIlist\fR is appended to this list. Only the pointers are
copied (shallow copy) unless newItem() has been reimplemented().
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/ntqobjectlist.html
+.BR http://doc.trolltech.com/tqobjectlist.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqobjectlistiterator.3qt b/doc/man/man3/tqobjectlistiterator.3qt
index 708968ca..72f8efcf 100644
--- a/doc/man/man3/tqobjectlistiterator.3qt
+++ b/doc/man/man3/tqobjectlistiterator.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QObjectListIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQObjectListIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,38 +7,38 @@
.ad l
.nh
.SH NAME
-QObjectListIterator \- Iterator for QObjectLists
+TQObjectListIterator \- Iterator for TQObjectLists
.SH SYNOPSIS
-\fC#include <ntqobjectlist.h>\fR
+\fC#include <tqobjectlist.h>\fR
.PP
Inherits QPtrListIterator<TQObject>.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQObjectListIterator\fR ( const QObjectList & list )"
+.BI "\fBQObjectListIterator\fR ( const TQObjectList & list )"
.br
.ti -1c
-.BI "QObjectListIterator & \fBoperator=\fR ( const QObjectListIterator & it )"
+.BI "TQObjectListIterator & \fBoperator=\fR ( const TQObjectListIterator & it )"
.br
.in -1c
.SH DESCRIPTION
-The QObjectListIterator class provides an iterator for QObjectLists.
+The TQObjectListIterator class provides an iterator for TQObjectLists.
.PP
-A QObjectListIterator iterator is a QPtrListIterator<TQObject>.
+A TQObjectListIterator iterator is a QPtrListIterator<TQObject>.
.PP
See TQObject::queryList() for an example of use.
.PP
-See also QObjectList, Collection Classes, and Non-GUI Classes.
+See also TQObjectList, Collection Classes, and Non-GUI Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QObjectListIterator::QObjectListIterator ( const QObjectList & list )"
+.SH "TQObjectListIterator::TQObjectListIterator ( const TQObjectList & list )"
Constructs an iterator for \fIlist\fR. The current iterator item is set to point on the first item in the \fIlist\fR.
-.SH "QObjectListIterator & QObjectListIterator::operator= ( const QObjectListIterator & it )"
+.SH "TQObjectListIterator & TQObjectListIterator::operator= ( const TQObjectListIterator & it )"
Assignment. Makes a copy of the iterator \fIit\fR and returns a
reference to this iterator.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qobjectlistiterator.html
+.BR http://doc.trolltech.com/tqobjectlistiterator.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
diff --git a/doc/man/man3/tqptrlist.3qt b/doc/man/man3/tqptrlist.3qt
index 2922f2d7..eb3dbdc7 100644
--- a/doc/man/man3/tqptrlist.3qt
+++ b/doc/man/man3/tqptrlist.3qt
@@ -13,7 +13,7 @@ QPtrList \- Template class that provides a list
.PP
Inherits QPtrCollection.
.PP
-Inherited by QObjectList and QStrList.
+Inherited by TQObjectList and QStrList.
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqptrlistiterator.3qt b/doc/man/man3/tqptrlistiterator.3qt
index 40d2a7fc..8a06d321 100644
--- a/doc/man/man3/tqptrlistiterator.3qt
+++ b/doc/man/man3/tqptrlistiterator.3qt
@@ -11,7 +11,7 @@ QPtrListIterator \- Iterator for QPtrList collections
.SH SYNOPSIS
\fC#include <ntqptrlist.h>\fR
.PP
-Inherited by QObjectListIterator and QStrListIterator.
+Inherited by TQObjectListIterator and QStrListIterator.
.PP
.SS "Public Members"
.in +1c
diff --git a/doc/man/man3/tqsignal.3qt b/doc/man/man3/tqsignal.3qt
index 1119b1bb..c5b80d84 100644
--- a/doc/man/man3/tqsignal.3qt
+++ b/doc/man/man3/tqsignal.3qt
@@ -123,7 +123,7 @@ See also Input/Output and Networking and Miscellaneous Classes.
.SH "QSignal::QSignal ( TQObject * parent = 0, const char * name = 0 )"
Constructs a signal object called \fIname\fR, with the parent object \fIparent\fR. These arguments are passed directly to TQObject.
.SH "QSignal::~QSignal ()"
-Destroys the signal. All connections are removed, as is the case with all QObjects.
+Destroys the signal. All connections are removed, as is the case with all TQObjects.
.SH "void QSignal::activate ()"
Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal.
.SH "bool QSignal::connect ( const TQObject * receiver, const char * member )"
diff --git a/doc/man/man3/tqsignalmapper.3qt b/doc/man/man3/tqsignalmapper.3qt
index 54a62c54..af0c40f7 100644
--- a/doc/man/man3/tqsignalmapper.3qt
+++ b/doc/man/man3/tqsignalmapper.3qt
@@ -54,7 +54,7 @@ This class collects a set of parameterless signals, and re-emits them with integ
See also Input/Output and Networking.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QSignalMapper::QSignalMapper ( TQObject * parent, const char * name = 0 )"
-Constructs a QSignalMapper called \fIname\fR, with parent \fIparent\fR. Like all QObjects, it will be deleted when the parent is deleted.
+Constructs a QSignalMapper called \fIname\fR, with parent \fIparent\fR. Like all TQObjects, it will be deleted when the parent is deleted.
.SH "QSignalMapper::~QSignalMapper ()"
Destroys the QSignalMapper.
.SH "void QSignalMapper::map ()\fC [slot]\fR"