diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/qaxbindable.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/qaxbindable.html')
-rw-r--r-- | doc/html/qaxbindable.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/qaxbindable.html b/doc/html/qaxbindable.html index d0834e192..aa5ec16d3 100644 --- a/doc/html/qaxbindable.html +++ b/doc/html/qaxbindable.html @@ -54,11 +54,11 @@ TQWidget and an ActiveX client. <li class=fn>IUnknown * <a href="#clientSite"><b>clientSite</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 TQAxBindable class provides an interface between a -<a href="qwidget.html">TQWidget</a> and an ActiveX client. +<a href="ntqwidget.html">TQWidget</a> and an ActiveX client. <p> @@ -68,12 +68,12 @@ your control class from both TQWidget (directly or indirectly) and this class to get access to this class's functions. The <a href="moc.html">meta object compiler</a> requires you to inherit from TQWidget <em>first</em>. <p> <pre> - class MyActiveX : public <a href="qwidget.html">TQWidget</a>, public TQAxBindable + class MyActiveX : public <a href="ntqwidget.html">TQWidget</a>, public TQAxBindable { <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> Q_PROPERTY( int value READ value WRITE setValue ) public: - MyActiveX( <a href="qwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); + MyActiveX( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); ... int value() const; @@ -124,7 +124,7 @@ ActiveX control that the property <em>property</em> has been changed. function. <p> <p>See also <a href="#requestPropertyChange">requestPropertyChange</a>(). -<h3 class=fn>void <a name="reportError"></a>TQAxBindable::reportError ( int code, const <a href="qstring.html">TQString</a> & src, const <a href="qstring.html">TQString</a> & desc, const <a href="qstring.html">TQString</a> & context = TQString::null )<tt> [static]</tt> +<h3 class=fn>void <a name="reportError"></a>TQAxBindable::reportError ( int code, const <a href="ntqstring.html">TQString</a> & src, const <a href="ntqstring.html">TQString</a> & desc, const <a href="ntqstring.html">TQString</a> & context = TQString::null )<tt> [static]</tt> </h3> <p> Reports an error to the client application. <em>code</em> is a @@ -143,7 +143,7 @@ Returns TRUE if the client allows the change; otherwise returns FALSE. <p> This function is usually called first in the write function for <em>property</em>, and writing is abandoned if the function returns FALSE. <p> <pre> - void MyActiveTQt::setText( const <a href="qstring.html">TQString</a> &text ) + void MyActiveTQt::setText( const <a href="ntqstring.html">TQString</a> &text ) { if ( !requestPropertyChange( "text" ) ) return; |