diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 14:04:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 14:04:27 +0900 |
commit | 8abfadf6f203cd326d62da508b89340d918ba040 (patch) | |
tree | 0de30633cef2c335c708171b470a68aca66df307 | |
parent | 791bca17606246ebbc962ade9f2f4d88f970dfea (diff) | |
download | kvkbd-8abfadf6f203cd326d62da508b89340d918ba040.tar.gz kvkbd-8abfadf6f203cd326d62da508b89340d918ba040.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/DragWidget.h | 2 | ||||
-rw-r--r-- | src/MainWidget.h | 4 | ||||
-rw-r--r-- | src/VButton.h | 2 | ||||
-rw-r--r-- | src/numpadvbutton.h | 2 | ||||
-rw-r--r-- | src/resizabledragwidget.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/DragWidget.h b/src/DragWidget.h index 0b2e988..3d15832 100644 --- a/src/DragWidget.h +++ b/src/DragWidget.h @@ -6,7 +6,7 @@ class DragWidget : public TQWidget { -Q_OBJECT +TQ_OBJECT public: DragWidget(TQWidget *parent=0, const char *name="", WFlags f=0); diff --git a/src/MainWidget.h b/src/MainWidget.h index 126aeeb..a108a12 100644 --- a/src/MainWidget.h +++ b/src/MainWidget.h @@ -40,7 +40,7 @@ class KbdTray; class MainWidget : public ResizableDragWidget { -Q_OBJECT +TQ_OBJECT public: MainWidget(TDEAboutData *about=0, bool tren=false, TQWidget *parent=0,const char *name="", WFlags f=WStyle_Customize | TQt::WX11BypassWM |WStyle_NormalBorder); @@ -131,7 +131,7 @@ private: class KbdDock : public DragWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/VButton.h b/src/VButton.h index 49d5d1f..454c4c2 100644 --- a/src/VButton.h +++ b/src/VButton.h @@ -6,7 +6,7 @@ class VButton : public TQPushButton { -Q_OBJECT +TQ_OBJECT public: VButton(TQWidget *parent=0, const char *name=0); diff --git a/src/numpadvbutton.h b/src/numpadvbutton.h index fc8a026..26bad61 100644 --- a/src/numpadvbutton.h +++ b/src/numpadvbutton.h @@ -27,7 +27,7 @@ */ class NumpadVButton : public VButton { -Q_OBJECT +TQ_OBJECT public: NumpadVButton(TQWidget *parent = 0, const char *name = 0); diff --git a/src/resizabledragwidget.h b/src/resizabledragwidget.h index f44e671..902c4fa 100644 --- a/src/resizabledragwidget.h +++ b/src/resizabledragwidget.h @@ -27,7 +27,7 @@ */ class ResizableDragWidget : public DragWidget { -Q_OBJECT +TQ_OBJECT public: ResizableDragWidget(TQWidget *parent, const char *name, WFlags f); |