diff options
Diffstat (limited to 'doc/html/qaxobject.html')
-rw-r--r-- | doc/html/qaxobject.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qaxobject.html b/doc/html/qaxobject.html index a40da7967..312a3ebd4 100644 --- a/doc/html/qaxobject.html +++ b/doc/html/qaxobject.html @@ -83,7 +83,7 @@ the <a href="tqobject.html">TQObject</a> subclass. Creates an empty COM object and propagates <em>parent</em> and <em>name</em> 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="tqobject.html">TQObject</a> * parent = 0, const char * name = 0 ) +<h3 class=fn><a name="TQAxObject-2"></a>TQAxObject::TQAxObject ( const <a href="tqstring.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="tqwidget.html">TQWidget</a> contructor. @@ -110,7 +110,7 @@ a value or when the function call failed. as the full prototype, for example as it would be written in a <a href="tqobject.html#connect">TQObject::connect</a>() call. <pre> - activeX->dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&)", "www.trolltech.com" ); + activeX->dynamicCall( "Navigate(const <a href="tqstring.html">TQString</a>&)", "www.trolltech.com" ); </pre> <p> Alternatively a function can be called passing the parameters embedded @@ -127,7 +127,7 @@ property. The property setter is called when <em>var1</em> is a valid TQVariant, otherwise the getter is called. <pre> activeX->dynamicCall( "Value", 5 ); - <a href="ntqstring.html">TQString</a> text = activeX->dynamicCall( "Text" ).toString(); + <a href="tqstring.html">TQString</a> text = activeX->dynamicCall( "Text" ).toString(); </pre> Note that it is faster to get and set properties using |