summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqaxaggregated.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqaxaggregated.3qt')
-rw-r--r--doc/man/man3/tqaxaggregated.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqaxaggregated.3qt b/doc/man/man3/tqaxaggregated.3qt
index f084e4af..e963957c 100644
--- a/doc/man/man3/tqaxaggregated.3qt
+++ b/doc/man/man3/tqaxaggregated.3qt
@@ -25,10 +25,10 @@ This class is part of the \fBQt ActiveQt Extension\fR.
.BI "IUnknown * \fBcontrollingUnknown\fR () const"
.br
.ti -1c
-.BI "QWidget * \fBwidget\fR () const"
+.BI "TQWidget * \fBwidget\fR () const"
.br
.ti -1c
-.BI "QObject * \fBobject\fR () const"
+.BI "TQObject * \fBobject\fR () const"
.br
.in -1c
.SH DESCRIPTION
@@ -38,7 +38,7 @@ The QAxAggregated class is an abstract base class for implementations of additio
.PP
Create a subclass of QAxAggregated and reimplement queryInterface() to support additional COM interfaces. Use multiple inheritance from those COM interfaces. Implement the IUnknown interface of those COM interfaces by delegating the calls to QueryInterface(), AddRef() and Release() to the interface provided by controllingUnknown().
.PP
-Use the widget() method if you need to make calls to the QWidget implementing the ActiveX control. You must not store that pointer in your subclass (unless you use QGuardedPtr), as the QWidget can be destroyed by the ActiveQt framework at any time.
+Use the widget() method if you need to make calls to the TQWidget implementing the ActiveX control. You must not store that pointer in your subclass (unless you use QGuardedPtr), as the TQWidget can be destroyed by the ActiveQt framework at any time.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "IUnknown * QAxAggregated::controllingUnknown () const\fC [protected]\fR"
Returns the IUnknown interface of the ActiveX control. Implement the IUnknown interface in your QAxAggregated subclass to delegate calls to QueryInterface(), AddRef() and Release() to the interface provided by this function.
@@ -74,10 +74,10 @@ Returns the IUnknown interface of the ActiveX control. Implement the IUnknown in
.fi
.PP
The QAXAGG_IUNKNOWN macro expands to the code above, and you can use it in the class declaration of your subclass.
-.SH "QObject * QAxAggregated::object () const\fC [protected]\fR"
-Returns a pointer to the QObject subclass implementing the COM object. This function might return 0.
+.SH "TQObject * QAxAggregated::object () const\fC [protected]\fR"
+Returns a pointer to the TQObject subclass implementing the COM object. This function might return 0.
.PP
-\fBWarning:\fR You must not store the returned pointer, unless you use a QGuardedPtr, since the QObject can be destroyed by ActiveQt at any time.
+\fBWarning:\fR You must not store the returned pointer, unless you use a QGuardedPtr, since the TQObject can be destroyed by ActiveQt at any time.
.SH "long QAxAggregated::queryInterface ( const QUuid & iid, void ** iface )\fC [pure virtual]\fR"
Reimplement this pure virtual function to support additional COM interfaces. Set the value of \fIiface\fR to point to this object to support the interface \fIiid\fR. Note that you must cast the \fCthis\fR pointer to the appropriate superclass.
.PP
@@ -109,12 +109,12 @@ Reimplement this pure virtual function to support additional COM interfaces. Set
Return the standard COM results S_OK (interface is supported) or E_NOINTERFACE (requested interface is not supported).
.PP
\fBWarning:\fR Even though you must implement the IUnknown interface if you implement any COM interface you must not support the IUnknown interface in your queryInterface() implementation.
-.SH "QWidget * QAxAggregated::widget () const\fC [protected]\fR"
-Returns a pointer to the QWidget subclass implementing the ActiveX control. This function might return 0.
+.SH "TQWidget * QAxAggregated::widget () const\fC [protected]\fR"
+Returns a pointer to the TQWidget subclass implementing the ActiveX control. This function might return 0.
.PP
\fBWarning:\fR
You must not store the returned pointer, unless you use a
-QGuardedPtr, since the QWidget can be destroyed by ActiveQt at any
+QGuardedPtr, since the TQWidget can be destroyed by ActiveQt at any
time.
.SH "SEE ALSO"