summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxserver.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qaxserver.html')
-rw-r--r--doc/html/qaxserver.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/qaxserver.html b/doc/html/qaxserver.html
index 51465119..5b4e1d02 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", "&lt;key string&gt;")</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 );