diff options
author | Michele Calgaro <[email protected]> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qaxwidget.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
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 |