diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:35:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-24 20:32:23 +0900 |
commit | 0cb23300070f6984b4f976f1c92984399a8aaa10 (patch) | |
tree | 63f2bcf00415116ba1d3a137509e71a451d3c7aa /src/variouswidgets.h | |
parent | 7c310957e67e961743ac0e72ea12205b504cd7d9 (diff) | |
download | basket-0cb23300.tar.gz basket-0cb23300.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit af97112a1a1c815e48080046e495510f41507206)
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 850d3d7..4e0e5c9 100644 --- a/src/variouswidgets.h +++ b/src/variouswidgets.h @@ -40,7 +40,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); @@ -60,7 +60,7 @@ class RunCommandRequester : public TQWidget */ class IconSizeCombo : public TQComboBox { - Q_OBJECT + TQ_OBJECT public: IconSizeCombo(bool rw, TQWidget *parent = 0, const char *name = 0); @@ -75,7 +75,7 @@ class IconSizeCombo : public TQComboBox */ class ViewSizeDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: ViewSizeDialog(TQWidget *parent, int w, int h); @@ -90,7 +90,7 @@ class ViewSizeDialog : public TQDialog */ class HelpLabel : public KURLLabel { - Q_OBJECT + TQ_OBJECT public: HelpLabel(const TQString &text, const TQString &message, TQWidget *parent); @@ -110,7 +110,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); @@ -135,7 +135,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); |