From ae3a79b23710ff34cc799dbdb8aafd57706683b2 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 14:17:49 +0900 Subject: [PATCH] Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- client/config/deKoratorconfig.h | 2 +- client/config/themes.h | 2 +- client/deKoratorclient.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/config/deKoratorconfig.h b/client/config/deKoratorconfig.h index 312026e..53e9442 100644 --- a/client/config/deKoratorconfig.h +++ b/client/config/deKoratorconfig.h @@ -43,7 +43,7 @@ class IconThemesConfig; class DeKoratorConfig : public TQObject { - Q_OBJECT + TQ_OBJECT public: DeKoratorConfig( TDEConfig* config, TQWidget* parent ); ~DeKoratorConfig(); diff --git a/client/config/themes.h b/client/config/themes.h index e7214b0..765889f 100644 --- a/client/config/themes.h +++ b/client/config/themes.h @@ -47,7 +47,7 @@ class TQStringList; class IconThemesConfig : public TQObject { - Q_OBJECT + TQ_OBJECT public: IconThemesConfig( TQWidget *parent, TDEListView *themesView/*, TQPushButton *removethemeBtn*/ ); diff --git a/client/deKoratorclient.h b/client/deKoratorclient.h index 9d5130d..3147fbd 100644 --- a/client/deKoratorclient.h +++ b/client/deKoratorclient.h @@ -194,7 +194,7 @@ inline bool DeKoratorFactory::initialized() class DeKoratorButton : public TQButton { - Q_OBJECT + TQ_OBJECT public: DeKoratorButton( bool isLeft, int buttonWidth, int buttonHeight, DeKoratorClient *parent = 0, const char *name = 0, const TQString &tip = NULL, ButtonType type = ButtonHelp, buttonTypeAll btnType = restore ); @@ -257,7 +257,7 @@ inline void DeKoratorButton::reset() class DeKoratorClient : public KDecoration { - Q_OBJECT + TQ_OBJECT public: DeKoratorClient( KDecorationBridge *b, KDecorationFactory *f ); virtual ~DeKoratorClient();