diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:58:45 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:58:45 -0600 |
commit | 33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0 (patch) | |
tree | 02797061cba5f5a5caf94fa5c5f94e13ad068084 /src/variouswidgets.h | |
parent | 81c05336d333ef966af8f8a4663898315e460685 (diff) | |
download | basket-33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0.tar.gz basket-33e86e1999d891dd2bc7ac2f66bbc1fb6d3bc5b0.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src/variouswidgets.h')
-rw-r--r-- | src/variouswidgets.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/variouswidgets.h b/src/variouswidgets.h index ea1b81b..a98d9b6 100644 --- a/src/variouswidgets.h +++ b/src/variouswidgets.h @@ -41,7 +41,7 @@ class Basket; class RunCommandRequester : public TQWidget { Q_OBJECT - TQ_OBJECT + public: RunCommandRequester(const TQString &runCommand, const TQString &message, TQWidget *parent = 0, const char *name = 0); ~RunCommandRequester(); @@ -61,7 +61,7 @@ class RunCommandRequester : public TQWidget class IconSizeCombo : public TQComboBox { Q_OBJECT - TQ_OBJECT + public: IconSizeCombo(bool rw, TQWidget *parent = 0, const char *name = 0); ~IconSizeCombo(); @@ -76,7 +76,7 @@ class IconSizeCombo : public TQComboBox class ViewSizeDialog : public TQDialog { Q_OBJECT - TQ_OBJECT + public: ViewSizeDialog(TQWidget *parent, int w, int h); ~ViewSizeDialog(); @@ -91,7 +91,7 @@ class ViewSizeDialog : public TQDialog class HelpLabel : public KURLLabel { Q_OBJECT - TQ_OBJECT + public: HelpLabel(const TQString &text, const TQString &message, TQWidget *parent); ~HelpLabel(); @@ -111,7 +111,7 @@ class HelpLabel : public KURLLabel class IconSizeDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: IconSizeDialog(const TQString &caption, const TQString &message, const TQString &icon, int iconSize, TQWidget *parent); ~IconSizeDialog(); @@ -136,7 +136,7 @@ class IconSizeDialog : public KDialogBase class FontSizeCombo : public KComboBox { Q_OBJECT - TQ_OBJECT + public: FontSizeCombo(bool rw, bool withDefault, TQWidget *parent = 0, const char *name = 0); ~FontSizeCombo(); |