diff options
Diffstat (limited to 'doc/html/qaxwidget.html')
-rw-r--r-- | doc/html/qaxwidget.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qaxwidget.html b/doc/html/qaxwidget.html index 283b04741..c6cffa6ca 100644 --- a/doc/html/qaxwidget.html +++ b/doc/html/qaxwidget.html @@ -88,7 +88,7 @@ around this problem, aggregate the TQAxWidget as a member of the Creates an empty TQAxWidget widget and propagates <em>parent</em>, <em>name</em> and <em>f</em> to the <a href="tqwidget.html">TQWidget</a> constructor. To initialize a control, call <a href="qaxbase.html#setControl">setControl</a>. -<h3 class=fn><a name="TQAxWidget-2"></a>TQAxWidget::TQAxWidget ( const <a href="ntqstring.html">TQString</a> & c, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) +<h3 class=fn><a name="TQAxWidget-2"></a>TQAxWidget::TQAxWidget ( const <a href="tqstring.html">TQString</a> & c, <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) </h3> Creates an TQAxWidget widget and initializes the ActiveX control <em>c</em>. <em>parent</em>, <em>name</em> and <em>f</em> are propagated to the <a href="tqwidget.html">TQWidget</a> contructor. @@ -127,7 +127,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 @@ -144,7 +144,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 |