diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqobjectcleanuphandler.3qt | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqobjectcleanuphandler.3qt')
-rw-r--r-- | doc/man/man3/tqobjectcleanuphandler.3qt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqobjectcleanuphandler.3qt b/doc/man/man3/tqobjectcleanuphandler.3qt index 645222d98..b3ef904a8 100644 --- a/doc/man/man3/tqobjectcleanuphandler.3qt +++ b/doc/man/man3/tqobjectcleanuphandler.3qt @@ -11,7 +11,7 @@ QObjectCleanupHandler \- Watches the lifetime of multiple QObjects .SH SYNOPSIS \fC#include <ntqobjectcleanuphandler.h>\fR .PP -Inherits QObject. +Inherits TQObject. .PP .SS "Public Members" .in +1c @@ -22,10 +22,10 @@ Inherits QObject. .BI "\fB~QObjectCleanupHandler\fR ()" .br .ti -1c -.BI "QObject * \fBadd\fR ( QObject * object )" +.BI "TQObject * \fBadd\fR ( TQObject * object )" .br .ti -1c -.BI "void \fBremove\fR ( QObject * object )" +.BI "void \fBremove\fR ( TQObject * object )" .br .ti -1c .BI "bool \fBisEmpty\fR () const" @@ -52,7 +52,7 @@ Example: ... .br .br - QObject *createObject(); + TQObject *createObject(); .br .br bool init(); @@ -71,11 +71,11 @@ Example: .br // allocate a new object, and add it to the cleanup handler .br - QObject *FactoryComponent::createObject() + TQObject *FactoryComponent::createObject() .br { .br - return objects.add( new QObject() ); + return objects.add( new TQObject() ); .br } .br @@ -98,7 +98,7 @@ Example: } .br .br - // it is only safe to unload the library when all QObject's have been destroyed + // it is only safe to unload the library when all TQObject's have been destroyed .br bool FactoryComponent::canUnload() const .br @@ -116,13 +116,13 @@ See also Object Model. Constructs an empty QObjectCleanupHandler. .SH "QObjectCleanupHandler::~QObjectCleanupHandler ()" Destroys the cleanup handler. All objects in this cleanup handler will be deleted. -.SH "QObject * QObjectCleanupHandler::add ( QObject * object )" +.SH "TQObject * QObjectCleanupHandler::add ( TQObject * object )" Adds \fIobject\fR to this cleanup handler and returns the pointer to the object. .SH "void QObjectCleanupHandler::clear ()" Deletes all objects in this cleanup handler. The cleanup handler becomes empty. .SH "bool QObjectCleanupHandler::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 ( QObject * object )" +.SH "void QObjectCleanupHandler::remove ( TQObject * object )" Removes the \fIobject\fR from this cleanup handler. The object will not be destroyed. |