diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:23 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:23 -0600 |
commit | 057f9eab2624cbaa07bcfd0b6f1e54fa930d2550 (patch) | |
tree | 88c0da4174c4051e5b62174ad1a396e2ae32108b | |
parent | 3e8fdf8323d0b7d440c9e6c714015ddfcdd99476 (diff) | |
download | kvkbd-057f9eab2624cbaa07bcfd0b6f1e54fa930d2550.tar.gz kvkbd-057f9eab2624cbaa07bcfd0b6f1e54fa930d2550.zip |
Remove spurious TQ_OBJECT instances
-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 14a9719..8519e16 100644 --- a/src/DragWidget.h +++ b/src/DragWidget.h @@ -7,7 +7,7 @@ class DragWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: DragWidget(TQWidget *parent=0, const char *name="", WFlags f=0); virtual ~DragWidget(); diff --git a/src/MainWidget.h b/src/MainWidget.h index 6801737..de38b01 100644 --- a/src/MainWidget.h +++ b/src/MainWidget.h @@ -41,7 +41,7 @@ class KbdTray; class MainWidget : public ResizableDragWidget { Q_OBJECT - TQ_OBJECT + public: MainWidget(KAboutData *about=0, bool tren=false, TQWidget *parent=0,const char *name="", WFlags f=WStyle_Customize | TQt::WX11BypassWM |WStyle_NormalBorder); void mappingNotify(XMappingEvent *e); @@ -135,7 +135,7 @@ private: class KbdDock : public DragWidget { Q_OBJECT - TQ_OBJECT + public: KbdDock(MainWidget *m); diff --git a/src/VButton.h b/src/VButton.h index fb8dcb5..7f04fd0 100644 --- a/src/VButton.h +++ b/src/VButton.h @@ -7,7 +7,7 @@ class VButton : public TQPushButton { Q_OBJECT - TQ_OBJECT + public: VButton(TQWidget *parent=0, const char *name=0); ~VButton(); diff --git a/src/numpadvbutton.h b/src/numpadvbutton.h index 9e2b6a0..53bcddf 100644 --- a/src/numpadvbutton.h +++ b/src/numpadvbutton.h @@ -28,7 +28,7 @@ class NumpadVButton : public VButton { Q_OBJECT - TQ_OBJECT + public: NumpadVButton(TQWidget *parent = 0, const char *name = 0); ~NumpadVButton(); diff --git a/src/resizabledragwidget.h b/src/resizabledragwidget.h index 060a27e..770434a 100644 --- a/src/resizabledragwidget.h +++ b/src/resizabledragwidget.h @@ -28,7 +28,7 @@ class ResizableDragWidget : public DragWidget { Q_OBJECT - TQ_OBJECT + public: ResizableDragWidget(TQWidget *parent, const char *name, WFlags f); ~ResizableDragWidget(); |