diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /doc/html/qaxserver.html | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
Diffstat (limited to 'doc/html/qaxserver.html')
-rw-r--r-- | doc/html/qaxserver.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/qaxserver.html b/doc/html/qaxserver.html index 514651198..5b4e1d02d 100644 --- a/doc/html/qaxserver.html +++ b/doc/html/qaxserver.html @@ -383,10 +383,10 @@ or any existing TQWidget subclass: class MyActiveX : public <a href="ntqwidget.html">TQWidget</a> { - <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> </pre> -<p> The <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> macro is required to provide the <a href="metaobjects.html#meta-object">meta object</a> information +<p> The <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> macro is required to provide the <a href="metaobjects.html#meta-object">meta object</a> information about the widget to the ActiveTQt framework. Use the <tt>Q_PROPERTY</tt> macro to declare properties for the ActiveX control: <p> <pre> @@ -618,7 +618,7 @@ inheritance from the <a href="qaxbindable.html">TQAxBindable</a> class: class MyActiveX : public <a href="ntqwidget.html">TQWidget</a><b>, public TQAxBindable</b> { - Q_OBJECT + TQ_OBJECT </pre> When implementing the property write functions, use the @@ -914,7 +914,7 @@ Office applications. <pre> class MyActiveX : public <a href="ntqwidget.html">TQWidget</a> { - Q_OBJECT + TQ_OBJECT <b>Q_CLASSINFO("Version", "2.0") Q_CLASSINFO("ClassID", "{7a4cffd8-cbcd-4ae9-ae7e-343e1e5710df}") Q_CLASSINFO("InterfaceID", "{6fb035bf-8019-48d8-be51-ef05427d8994}") @@ -945,7 +945,7 @@ macro. <pre> class MyLicensedControl : public <a href="ntqwidget.html">TQWidget</a> { - Q_OBJECT + TQ_OBJECT <b>Q_CLASSINFO("LicenseKey", "<key string>")</b> ... }; @@ -1023,7 +1023,7 @@ a new object of the <a href="qaxaggregated.html">TQAxAggregated</a> subclass. class MyActiveX : public <a href="ntqwidget.html">TQWidget</a>, <b>public TQAxBindable</b> { - Q_OBJECT + TQ_OBJECT public: MyActiveX( TQWidget *parent, const char *name = 0 ); |