diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
commit | 814bf5fc4f403c13b0d8274c7f13fbef183c5c84 (patch) | |
tree | 96dc8b35683388ab4d17734791984f05d2e82621 /twin/clients | |
parent | 873f0a21c92bc7b737cade48526afddc219aacc3 (diff) | |
download | tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.tar.gz tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'twin/clients')
-rw-r--r-- | twin/clients/b2/b2client.h | 2 | ||||
-rw-r--r-- | twin/clients/b2/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/default/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/keramik/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/keramik/keramik.h | 2 | ||||
-rw-r--r-- | twin/clients/kwmtheme/kwmthemeclient.h | 2 | ||||
-rw-r--r-- | twin/clients/modernsystem/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/plastik/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/plastik/plastik.h | 2 | ||||
-rw-r--r-- | twin/clients/plastik/plastikbutton.h | 2 | ||||
-rw-r--r-- | twin/clients/quartz/config/config.h | 2 | ||||
-rw-r--r-- | twin/clients/quartz/quartz.h | 2 | ||||
-rw-r--r-- | twin/clients/redmond/redmond.h | 4 | ||||
-rw-r--r-- | twin/clients/test/test.h | 2 | ||||
-rw-r--r-- | twin/clients/web/Web.h | 2 |
15 files changed, 16 insertions, 16 deletions
diff --git a/twin/clients/b2/b2client.h b/twin/clients/b2/b2client.h index 30220b175..e200843a4 100644 --- a/twin/clients/b2/b2client.h +++ b/twin/clients/b2/b2client.h @@ -93,7 +93,7 @@ private: class B2Client : public KDecoration { - Q_OBJECT + TQ_OBJECT friend class B2Titlebar; public: B2Client(KDecorationBridge *b, KDecorationFactory *f); diff --git a/twin/clients/b2/config/config.h b/twin/clients/b2/config/config.h index a5382dc45..0a3e7c9ec 100644 --- a/twin/clients/b2/config/config.h +++ b/twin/clients/b2/config/config.h @@ -18,7 +18,7 @@ class B2Config: public TQObject { - Q_OBJECT + TQ_OBJECT public: B2Config( TDEConfig* conf, TQWidget* parent ); diff --git a/twin/clients/default/config/config.h b/twin/clients/default/config/config.h index daf38af95..d01459a13 100644 --- a/twin/clients/default/config/config.h +++ b/twin/clients/default/config/config.h @@ -19,7 +19,7 @@ class KDEDefaultConfig: public TQObject { - Q_OBJECT + TQ_OBJECT public: KDEDefaultConfig( TDEConfig* conf, TQWidget* parent ); diff --git a/twin/clients/keramik/config/config.h b/twin/clients/keramik/config/config.h index 721248a09..42f3a44e2 100644 --- a/twin/clients/keramik/config/config.h +++ b/twin/clients/keramik/config/config.h @@ -31,7 +31,7 @@ class KeramikConfig: public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/twin/clients/keramik/keramik.h b/twin/clients/keramik/keramik.h index 54639dece..793531c87 100644 --- a/twin/clients/keramik/keramik.h +++ b/twin/clients/keramik/keramik.h @@ -137,7 +137,7 @@ namespace Keramik { class KeramikClient : public KDecoration { - Q_OBJECT + TQ_OBJECT public: diff --git a/twin/clients/kwmtheme/kwmthemeclient.h b/twin/clients/kwmtheme/kwmthemeclient.h index 58db3d14f..f611e89d2 100644 --- a/twin/clients/kwmtheme/kwmthemeclient.h +++ b/twin/clients/kwmtheme/kwmthemeclient.h @@ -24,7 +24,7 @@ protected: class KWMThemeClient : public KDecoration { - Q_OBJECT + TQ_OBJECT public: KWMThemeClient( KDecorationBridge* b, KDecorationFactory* f ); ~KWMThemeClient(){;} diff --git a/twin/clients/modernsystem/config/config.h b/twin/clients/modernsystem/config/config.h index 20ce5539e..004dd9855 100644 --- a/twin/clients/modernsystem/config/config.h +++ b/twin/clients/modernsystem/config/config.h @@ -10,7 +10,7 @@ class ModernSysConfig : public TQObject { - Q_OBJECT + TQ_OBJECT public: ModernSysConfig(TDEConfig* conf, TQWidget* parent); diff --git a/twin/clients/plastik/config/config.h b/twin/clients/plastik/config/config.h index 73231c50f..d83ebf149 100644 --- a/twin/clients/plastik/config/config.h +++ b/twin/clients/plastik/config/config.h @@ -32,7 +32,7 @@ class ConfigDialog; class PlastikConfig : public TQObject { - Q_OBJECT + TQ_OBJECT public: PlastikConfig(TDEConfig* config, TQWidget* parent); ~PlastikConfig(); diff --git a/twin/clients/plastik/plastik.h b/twin/clients/plastik/plastik.h index a4c1bc5b7..85b9e5fa0 100644 --- a/twin/clients/plastik/plastik.h +++ b/twin/clients/plastik/plastik.h @@ -73,7 +73,7 @@ enum ButtonIcon { class PlastikHandler: public TQObject, public KDecorationFactory { - Q_OBJECT + TQ_OBJECT public: PlastikHandler(); ~PlastikHandler(); diff --git a/twin/clients/plastik/plastikbutton.h b/twin/clients/plastik/plastikbutton.h index dbebcf63f..6da87100f 100644 --- a/twin/clients/plastik/plastikbutton.h +++ b/twin/clients/plastik/plastikbutton.h @@ -37,7 +37,7 @@ class PlastikClient; class PlastikButton : public KCommonDecorationButton { - Q_OBJECT + TQ_OBJECT public: PlastikButton(ButtonType type, PlastikClient *parent, const char *name); ~PlastikButton(); diff --git a/twin/clients/quartz/config/config.h b/twin/clients/quartz/config/config.h index e43c18179..a468d8703 100644 --- a/twin/clients/quartz/config/config.h +++ b/twin/clients/quartz/config/config.h @@ -16,7 +16,7 @@ class QuartzConfig: public TQObject { - Q_OBJECT + TQ_OBJECT public: QuartzConfig( TDEConfig* conf, TQWidget* parent ); diff --git a/twin/clients/quartz/quartz.h b/twin/clients/quartz/quartz.h index d0ab64faf..d0db8b103 100644 --- a/twin/clients/quartz/quartz.h +++ b/twin/clients/quartz/quartz.h @@ -30,7 +30,7 @@ class QuartzClient; class QuartzHandler: public TQObject, public KDecorationFactory { - Q_OBJECT + TQ_OBJECT public: QuartzHandler(); ~QuartzHandler(); diff --git a/twin/clients/redmond/redmond.h b/twin/clients/redmond/redmond.h index 211763535..3ef7337fb 100644 --- a/twin/clients/redmond/redmond.h +++ b/twin/clients/redmond/redmond.h @@ -29,7 +29,7 @@ class RedmondDeco; class RedmondButton : public KCommonDecorationButton { - Q_OBJECT + TQ_OBJECT public: RedmondButton(ButtonType type, RedmondDeco *parent, const char *name); void setBitmap(const unsigned char *bitmap); @@ -72,7 +72,7 @@ private: class RedmondDecoFactory : public TQObject, public KDecorationFactory { - Q_OBJECT + TQ_OBJECT public: RedmondDecoFactory(); virtual ~RedmondDecoFactory(); diff --git a/twin/clients/test/test.h b/twin/clients/test/test.h index bfe36fa7c..f735df6c4 100644 --- a/twin/clients/test/test.h +++ b/twin/clients/test/test.h @@ -15,7 +15,7 @@ const int SUPPORTED_WINDOW_TYPES_MASK = NET::NormalMask | NET::DesktopMask | NET class Decoration : public KDecoration { - Q_OBJECT + TQ_OBJECT public: Decoration( KDecorationBridge* bridge, KDecorationFactory* factory ); virtual void init(); diff --git a/twin/clients/web/Web.h b/twin/clients/web/Web.h index d73f370d3..175928c91 100644 --- a/twin/clients/web/Web.h +++ b/twin/clients/web/Web.h @@ -69,7 +69,7 @@ namespace Web class WebFactory : public TQObject, public KDecorationFactory { - Q_OBJECT + TQ_OBJECT public: |