diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
commit | 0fed1a188b8d8be416550c63e2d5954f06434386 (patch) | |
tree | 19f346183997f815423bd63cb9f2e86baa1f3b14 /parts/doxygen/input.h | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'parts/doxygen/input.h')
-rw-r--r-- | parts/doxygen/input.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/doxygen/input.h b/parts/doxygen/input.h index 9053e731..5b593c17 100644 --- a/parts/doxygen/input.h +++ b/parts/doxygen/input.h @@ -36,7 +36,7 @@ class IInput class InputBool : public TQWidget, public IInput { Q_OBJECT - TQ_OBJECT + public: InputBool(const TQCString &key, const TQString &text, TQWidget *parent, bool &flag); @@ -64,7 +64,7 @@ private: class InputInt : public TQWidget, public IInput { Q_OBJECT - TQ_OBJECT + public: InputInt(const TQString &text, TQWidget *parent, @@ -93,7 +93,7 @@ private: class InputString : public TQWidget, public IInput { Q_OBJECT - TQ_OBJECT + public: enum StringMode { StringFree=0, @@ -134,7 +134,7 @@ private: class InputStrList : public TQWidget, public IInput { Q_OBJECT - TQ_OBJECT + public: enum ListMode { ListString=0, |