From 359640943bcf155faa9a067dde9e00a123276290 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Feb 2012 17:43:39 -0600 Subject: Automated update from Qt3 --- doc/html/qaxserver.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/qaxserver.html') 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 TQWidget { - Q_OBJECT + TQ_OBJECT -

The Q_OBJECT macro is required to provide the meta object information +

The TQ_OBJECT macro is required to provide the meta object information about the widget to the ActiveTQt framework. Use the Q_PROPERTY macro to declare properties for the ActiveX control:

@@ -618,7 +618,7 @@ inheritance from the TQAxBindable class:
 
     class MyActiveX : public TQWidget, public TQAxBindable
     {
-        Q_OBJECT
+        TQ_OBJECT
     
When implementing the property write functions, use the @@ -914,7 +914,7 @@ Office applications.
     class MyActiveX : public TQWidget
     {
-        Q_OBJECT
+        TQ_OBJECT
         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.
     
     class MyLicensedControl : public TQWidget
     {
-        Q_OBJECT
+        TQ_OBJECT
         Q_CLASSINFO("LicenseKey", "<key string>")
     ...
     };
@@ -1023,7 +1023,7 @@ a new object of the TQAxAggregated subclass.
     class MyActiveX : public TQWidget,                       
                       public TQAxBindable
     {
-    	Q_OBJECT
+    	TQ_OBJECT
     public:
         MyActiveX( TQWidget *parent, const char *name = 0 );
 
-- 
cgit v1.2.1