diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 22:35:23 +0900 |
commit | cd4b0ac22608120ad003f575a1640e1ddc7703df (patch) | |
tree | e68977e058f9d4900eaf266d1dbfc277dbae62e0 /kalarm/recurrenceeditprivate.h | |
parent | cc2af80602eb3d2a8ea2915d6ff59a10b17f7a21 (diff) | |
download | tdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.tar.gz tdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kalarm/recurrenceeditprivate.h')
-rw-r--r-- | kalarm/recurrenceeditprivate.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kalarm/recurrenceeditprivate.h b/kalarm/recurrenceeditprivate.h index a38248512..b8bf78183 100644 --- a/kalarm/recurrenceeditprivate.h +++ b/kalarm/recurrenceeditprivate.h @@ -46,7 +46,7 @@ class NoRule : public TQFrame class Rule : public NoRule { - Q_OBJECT + TQ_OBJECT public: Rule(const TQString& freqText, const TQString& freqWhatsThis, bool time, bool readOnly, @@ -72,7 +72,7 @@ class Rule : public NoRule // Subdaily rule choices class SubDailyRule : public Rule { - Q_OBJECT + TQ_OBJECT public: SubDailyRule(bool readOnly, TQWidget* parent, const char* name = 0); @@ -81,7 +81,7 @@ class SubDailyRule : public Rule // Daily/weekly rule choices base class class DayWeekRule : public Rule { - Q_OBJECT + TQ_OBJECT public: DayWeekRule(const TQString& freqText, const TQString& freqWhatsThis, const TQString& daysWhatsThis, @@ -116,7 +116,7 @@ class WeeklyRule : public DayWeekRule // Monthly/yearly rule choices base class class MonthYearRule : public Rule { - Q_OBJECT + TQ_OBJECT public: enum DayPosType { DATE, POS }; @@ -171,7 +171,7 @@ class MonthlyRule : public MonthYearRule // Yearly rule choices class YearlyRule : public MonthYearRule { - Q_OBJECT + TQ_OBJECT public: YearlyRule(bool readOnly, TQWidget* parent, const char* name = 0); |