diff options
Diffstat (limited to 'doc/html/qaxaggregated.html')
-rw-r--r-- | doc/html/qaxaggregated.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/qaxaggregated.html b/doc/html/qaxaggregated.html index f27d564bd..a0b1693c4 100644 --- a/doc/html/qaxaggregated.html +++ b/doc/html/qaxaggregated.html @@ -48,7 +48,7 @@ additional COM interfaces. <li class=fn>TQObject * <a href="#object"><b>object</b></a> () const</li> </ul> <hr><a name="details"></a><h2>Detailed Description</h2> -<p> This class is defined in the <b>TQt <a href="activeqt.html#ActiveTQt">ActiveTQt</a> Extension</b>, which can be found in the <tt>qt/extensions</tt> directory. It is not included in the main TQt API. +<p> This class is defined in the <b>TQt <a href="activentqt.html#ActiveTQt">ActiveTQt</a> Extension</b>, which can be found in the <tt>qt/extensions</tt> directory. It is not included in the main TQt API. <p> The TQAxAggregated class is an abstract base class for implementations of @@ -62,9 +62,9 @@ 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 <a href="#controllingUnknown">controllingUnknown</a>(). -<p> Use the <a href="#widget">widget</a>() method if you need to make calls to the <a href="qwidget.html">TQWidget</a> +<p> Use the <a href="#widget">widget</a>() method if you need to make calls to the <a href="ntqwidget.html">TQWidget</a> implementing the ActiveX control. You must not store that pointer -in your subclass (unless you use <a href="qguardedptr.html">TQGuardedPtr</a>), as the TQWidget can +in your subclass (unless you use <a href="ntqguardedptr.html">TQGuardedPtr</a>), as the TQWidget can be destroyed by the ActiveTQt framework at any time. <hr><h2>Member Function Documentation</h2> @@ -95,24 +95,24 @@ provided by this function. <p> The TQAXAGG_IUNKNOWN macro expands to the code above, and you can use it in the class declaration of your subclass. -<h3 class=fn><a href="qobject.html">TQObject</a> * <a name="object"></a>TQAxAggregated::object () const<tt> [protected]</tt> +<h3 class=fn><a href="ntqobject.html">TQObject</a> * <a name="object"></a>TQAxAggregated::object () const<tt> [protected]</tt> </h3> -<p> Returns a pointer to the <a href="qobject.html">TQObject</a> subclass implementing the COM object. +<p> Returns a pointer to the <a href="ntqobject.html">TQObject</a> subclass implementing the COM object. This function might return 0. <p> <b>Warning:</b> You must not store the returned pointer, unless you use a -<a href="qguardedptr.html">TQGuardedPtr</a>, since the TQObject can be destroyed by <a href="activeqt.html#ActiveTQt">ActiveTQt</a> at any +<a href="ntqguardedptr.html">TQGuardedPtr</a>, since the TQObject can be destroyed by <a href="activentqt.html#ActiveTQt">ActiveTQt</a> at any time. -<h3 class=fn>long <a name="queryInterface"></a>TQAxAggregated::queryInterface ( const <a href="quuid.html">TQUuid</a> & iid, void ** iface )<tt> [pure virtual]</tt> +<h3 class=fn>long <a name="queryInterface"></a>TQAxAggregated::queryInterface ( const <a href="ntquuid.html">TQUuid</a> & iid, void ** iface )<tt> [pure virtual]</tt> </h3> <p> Reimplement this pure virtual function to support additional COM interfaces. Set the value of <em>iface</em> to point to this object to support the interface <em>iid</em>. Note that you must cast the <tt>this</tt> pointer to the appropriate superclass. <p> <pre> - long AxImpl::queryInterface( const <a href="quuid.html">TQUuid</a> &iid, void **iface ) + long AxImpl::queryInterface( const <a href="ntquuid.html">TQUuid</a> &iid, void **iface ) { *iface = 0; if ( iid == IID_ISomeCOMInterface ) @@ -132,14 +132,14 @@ Even though you must implement the IUnknown interface if you implement any COM interface you must not support the IUnknown interface in your <a href="#queryInterface">queryInterface</a>() implementation. -<h3 class=fn><a href="qwidget.html">TQWidget</a> * <a name="widget"></a>TQAxAggregated::widget () const<tt> [protected]</tt> +<h3 class=fn><a href="ntqwidget.html">TQWidget</a> * <a name="widget"></a>TQAxAggregated::widget () const<tt> [protected]</tt> </h3> -<p> Returns a pointer to the <a href="qwidget.html">TQWidget</a> subclass implementing the ActiveX control. +<p> Returns a pointer to the <a href="ntqwidget.html">TQWidget</a> subclass implementing the ActiveX control. This function might return 0. <p> <b>Warning:</b> You must not store the returned pointer, unless you use a -<a href="qguardedptr.html">TQGuardedPtr</a>, since the TQWidget can be destroyed by <a href="activeqt.html#ActiveTQt">ActiveTQt</a> at any +<a href="ntqguardedptr.html">TQGuardedPtr</a>, since the TQWidget can be destroyed by <a href="activentqt.html#ActiveTQt">ActiveTQt</a> at any time. <!-- eof --> |