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/focusedwidgets.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/focusedwidgets.h')
-rw-r--r-- | src/focusedwidgets.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/focusedwidgets.h b/src/focusedwidgets.h index 2b72fbc..0e78c91 100644 --- a/src/focusedwidgets.h +++ b/src/focusedwidgets.h @@ -31,7 +31,7 @@ class FocusedTextEdit : public KTextEdit { - Q_OBJECT + TQ_OBJECT public: FocusedTextEdit(bool disableUpdatesOnKeyPress, TQWidget *parent = 0, const char *name = 0); @@ -54,7 +54,7 @@ class FocusedTextEdit : public KTextEdit // TODO: Rename to EscapableKColorCombo class FocusedColorCombo : public KColorCombo { - Q_OBJECT + TQ_OBJECT public: FocusedColorCombo(TQWidget *parent = 0, const char *name = 0); @@ -69,7 +69,7 @@ class FocusedColorCombo : public KColorCombo // TODO: Rename to EscapableTDEFontCombo class FocusedFontCombo : public TDEFontCombo { - Q_OBJECT + TQ_OBJECT public: FocusedFontCombo(TQWidget *parent = 0, const char *name = 0); @@ -84,7 +84,7 @@ class FocusedFontCombo : public TDEFontCombo // TODO: Rename to EscapableKComboBox class FocusedComboBox : public KComboBox { - Q_OBJECT + TQ_OBJECT public: FocusedComboBox(TQWidget *parent = 0, const char *name = 0); @@ -99,7 +99,7 @@ class FocusedComboBox : public KComboBox // TODO: Rename to EscapableKLineEdit class FocusedLineEdit : public KLineEdit { - Q_OBJECT + TQ_OBJECT public: FocusedLineEdit(TQWidget *parent = 0, const char *name = 0); |