diff options
Diffstat (limited to 'doc/html/qaxobject.html')
-rw-r--r-- | doc/html/qaxobject.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/qaxobject.html b/doc/html/qaxobject.html index 0c29dce86..5c3909551 100644 --- a/doc/html/qaxobject.html +++ b/doc/html/qaxobject.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } <a href="#details">More...</a> <p>This class is part of the <b>TQt ActiveTQt Extension</b>. <p><tt>#include <<a href="qaxobject-h.html">qaxobject.h</a>></tt> -<p>Inherits <a href="ntqobject.html">TQObject</a> and <a href="qaxbase.html">TQAxBase</a>. +<p>Inherits <a href="tqobject.html">TQObject</a> and <a href="qaxbase.html">TQAxBase</a>. <p>Inherited by <a href="qaxscriptengine.html">TQAxScriptEngine</a>. <p><a href="qaxobject-members.html">List of all member functions.</a> <h2>Public Members</h2> @@ -55,7 +55,7 @@ body { background: #ffffff; color: black; } <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 TQAxObject class provides a <a href="ntqobject.html">TQObject</a> that wraps a COM object. +The TQAxObject class provides a <a href="tqobject.html">TQObject</a> that wraps a COM object. <p> @@ -75,23 +75,23 @@ in the subclass (the generated <a href="moc.html#moc">moc</a>-file will not comp cannot add further signals, slots or properties. This limitation is due to the metaobject information generated in runtime. To work around this problem, aggregate the TQAxObject as a member of -the <a href="ntqobject.html">TQObject</a> subclass. +the <a href="tqobject.html">TQObject</a> subclass. <p> <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQAxObject"></a>TQAxObject::TQAxObject ( <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQAxObject"></a>TQAxObject::TQAxObject ( <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Creates an empty COM object and propagates <em>parent</em> and <em>name</em> -to the <a href="ntqobject.html">TQObject</a> constructor. To initialize the object, call <a href="qaxbase.html#setControl">setControl</a>. +to the <a href="tqobject.html">TQObject</a> constructor. To initialize the object, call <a href="qaxbase.html#setControl">setControl</a>. -<h3 class=fn><a name="TQAxObject-2"></a>TQAxObject::TQAxObject ( const <a href="ntqstring.html">TQString</a> & c, <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQAxObject-2"></a>TQAxObject::TQAxObject ( const <a href="ntqstring.html">TQString</a> & c, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> Creates a TQAxObject that wraps the COM object <em>c</em>. <em>parent</em> and <em>name</em> are propagated to the <a href="ntqwidget.html">TQWidget</a> contructor. <p> <p>See also <a href="qaxbase.html#control-prop">control</a>. -<h3 class=fn><a name="TQAxObject-3"></a>TQAxObject::TQAxObject ( IUnknown * iface, <a href="ntqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQAxObject-3"></a>TQAxObject::TQAxObject ( IUnknown * iface, <a href="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) </h3> -Creates a TQAxObject that wraps the COM object referenced by <em>iface</em>. <em>parent</em> and <em>name</em> are propagated to the <a href="ntqobject.html">TQObject</a> +Creates a TQAxObject that wraps the COM object referenced by <em>iface</em>. <em>parent</em> and <em>name</em> are propagated to the <a href="tqobject.html">TQObject</a> contructor. <h3 class=fn><a name="~TQAxObject"></a>TQAxObject::~TQAxObject () @@ -108,7 +108,7 @@ the method, or an invalid <a href="ntqvariant.html">TQVariant</a> if the method a value or when the function call failed. <p> If <em>function</em> is a method of the object the string must be provided as the full prototype, for example as it would be written in a -<a href="ntqobject.html#connect">TQObject::connect</a>() call. +<a href="tqobject.html#connect">TQObject::connect</a>() call. <pre> activeX->dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&)", "www.trolltech.com" ); </pre> @@ -131,7 +131,7 @@ otherwise the getter is called. </pre> Note that it is faster to get and set properties using -<a href="ntqobject.html#property">TQObject::property</a>() and <a href="ntqobject.html#setProperty">TQObject::setProperty</a>(). +<a href="tqobject.html#property">TQObject::property</a>() and <a href="tqobject.html#setProperty">TQObject::setProperty</a>(). <p> It is only possible to call functions through <a href="qaxbase.html#dynamicCall">dynamicCall</a>() that have parameters or return values of datatypes supported by <a href="ntqvariant.html">TQVariant</a>. See the <a href="qaxbase.html">TQAxBase</a> class documentation for a list of |