diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:09:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:09:42 -0600 |
commit | 3da0c9594ec7967c35cc9851c9403f8303ec542b (patch) | |
tree | e82a47b6c444f8931ee51ebc5b6985ecb3d68d39 /quanta/components/csseditor/specialsb.h | |
parent | 1179541f92513abc4cc3798ab2bb96960b3daebd (diff) | |
download | tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.tar.gz tdewebdev-3da0c9594ec7967c35cc9851c9403f8303ec542b.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'quanta/components/csseditor/specialsb.h')
-rw-r--r-- | quanta/components/csseditor/specialsb.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/components/csseditor/specialsb.h b/quanta/components/csseditor/specialsb.h index 1536c5fe..ef74213f 100644 --- a/quanta/components/csseditor/specialsb.h +++ b/quanta/components/csseditor/specialsb.h @@ -29,7 +29,7 @@ class KLineEdit; class specialSB : public miniEditor { Q_OBJECT - TQ_OBJECT + protected: TQComboBox *m_cb; mySpinBox *m_sb; @@ -55,28 +55,28 @@ class specialSB : public miniEditor { class angleEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: angleEditor(TQWidget *parent=0, const char *name=0); }; class frequencyEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: frequencyEditor(TQWidget *parent=0, const char *name=0); }; class timeEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: timeEditor(TQWidget *parent=0, const char *name=0); }; class lengthEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: lengthEditor(TQWidget *parent=0, const char *name=0); }; |