diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 13:35:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-20 13:35:00 +0900 |
commit | af97112a1a1c815e48080046e495510f41507206 (patch) | |
tree | 7919380d04122fc2a7d47d4dbaa20ffa6e634080 /src/variouswidgets.h | |
parent | 333171761d38caf584800780edeae501579233eb (diff) | |
download | basket-af97112a1a1c815e48080046e495510f41507206.tar.gz basket-af97112a1a1c815e48080046e495510f41507206.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
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); |