diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /kalarm/recurrenceeditprivate.h | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kalarm/recurrenceeditprivate.h')
-rw-r--r-- | kalarm/recurrenceeditprivate.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kalarm/recurrenceeditprivate.h b/kalarm/recurrenceeditprivate.h index 659921d5b..68dd429b9 100644 --- a/kalarm/recurrenceeditprivate.h +++ b/kalarm/recurrenceeditprivate.h @@ -39,7 +39,7 @@ class TQString; class NoRule : public TQFrame { public: - NoRule(TQWidget* tqparent, const char* name = 0) : TQFrame(tqparent, name) + NoRule(TQWidget* parent, const char* name = 0) : TQFrame(parent, name) { setFrameStyle(TQFrame::NoFrame); } virtual int frequency() const { return 0; } }; @@ -50,7 +50,7 @@ class Rule : public NoRule TQ_OBJECT public: Rule(const TQString& freqText, const TQString& freqWhatsThis, bool time, bool readOnly, - TQWidget* tqparent, const char* name = 0); + TQWidget* parent, const char* name = 0); int frequency() const; void setFrequency(int); virtual void setFrequencyFocus() { mSpinBox->setFocus(); } @@ -75,7 +75,7 @@ class SubDailyRule : public Rule Q_OBJECT TQ_OBJECT public: - SubDailyRule(bool readOnly, TQWidget* tqparent, const char* name = 0); + SubDailyRule(bool readOnly, TQWidget* parent, const char* name = 0); }; // Daily/weekly rule choices base class @@ -85,7 +85,7 @@ class DayWeekRule : public Rule TQ_OBJECT public: DayWeekRule(const TQString& freqText, const TQString& freqWhatsThis, const TQString& daysWhatsThis, - bool readOnly, TQWidget* tqparent, const char* name = 0); + bool readOnly, TQWidget* parent, const char* name = 0); TQBitArray days() const; void setDays(bool); void setDays(const TQBitArray& days); @@ -103,14 +103,14 @@ class DayWeekRule : public Rule class DailyRule : public DayWeekRule { public: - DailyRule(bool readOnly, TQWidget* tqparent, const char* name = 0); + DailyRule(bool readOnly, TQWidget* parent, const char* name = 0); }; // Weekly rule choices class WeeklyRule : public DayWeekRule { public: - WeeklyRule(bool readOnly, TQWidget* tqparent, const char* name = 0); + WeeklyRule(bool readOnly, TQWidget* parent, const char* name = 0); }; // Monthly/yearly rule choices base class @@ -122,7 +122,7 @@ class MonthYearRule : public Rule enum DayPosType { DATE, POS }; MonthYearRule(const TQString& freqText, const TQString& freqWhatsThis, bool allowEveryWeek, - bool readOnly, TQWidget* tqparent, const char* name = 0); + bool readOnly, TQWidget* parent, const char* name = 0); DayPosType type() const; int date() const; // if date in month is selected int week() const; // if position is selected @@ -165,7 +165,7 @@ class MonthYearRule : public Rule class MonthlyRule : public MonthYearRule { public: - MonthlyRule(bool readOnly, TQWidget* tqparent, const char* name = 0); + MonthlyRule(bool readOnly, TQWidget* parent, const char* name = 0); }; // Yearly rule choices @@ -174,7 +174,7 @@ class YearlyRule : public MonthYearRule Q_OBJECT TQ_OBJECT public: - YearlyRule(bool readOnly, TQWidget* tqparent, const char* name = 0); + YearlyRule(bool readOnly, TQWidget* parent, const char* name = 0); TQValueList<int> months() const; void setMonths(const TQValueList<int>& months); void setDefaultValues(int dayOfMonth, int dayOfWeek, int month); |