diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:04:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:04:52 +0900 |
commit | 1cb737eca8ee850f3d0678b96d06a733a05db4d9 (patch) | |
tree | 4152f219d0169c7a30155cfd512a0ffcde61be54 /kbstateapplet | |
parent | 7122d7432e2a34fbaa25f2aaeb25d121d120d9b7 (diff) | |
download | tdeaccessibility-1cb737eca8ee850f3d0678b96d06a733a05db4d9.tar.gz tdeaccessibility-1cb737eca8ee850f3d0678b96d06a733a05db4d9.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbstateapplet')
-rw-r--r-- | kbstateapplet/kbstate.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kbstateapplet/kbstate.h b/kbstateapplet/kbstate.h index da09d48..854d61c 100644 --- a/kbstateapplet/kbstate.h +++ b/kbstateapplet/kbstate.h @@ -34,7 +34,7 @@ class TQGridLayout; class TDEPopupMenu; class StatusIcon : public TQPushButton { - Q_OBJECT + TQ_OBJECT public: StatusIcon (const TQString &text, TQWidget *parent, const char *name=0); @@ -45,7 +45,7 @@ public: typedef TQPtrList<StatusIcon> IconList; class TimeoutIcon : public StatusIcon { - Q_OBJECT + TQ_OBJECT public: TimeoutIcon (TDEInstance *instance, const TQString &text, @@ -73,7 +73,7 @@ private slots: }; class KeyIcon : public StatusIcon { - Q_OBJECT + TQ_OBJECT public: KeyIcon (int keyId, TDEInstance *instance, @@ -104,7 +104,7 @@ private: }; class MouseIcon : public StatusIcon { - Q_OBJECT + TQ_OBJECT public: MouseIcon (TDEInstance *instance, TQWidget *parent, const char *name=0); @@ -133,7 +133,7 @@ class MouseIcon : public StatusIcon { }; class KbStateApplet : public KPanelApplet { - Q_OBJECT + TQ_OBJECT public: |