diff options
Diffstat (limited to 'korganizer/koeditorrecurrence.h')
-rw-r--r-- | korganizer/koeditorrecurrence.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/korganizer/koeditorrecurrence.h b/korganizer/koeditorrecurrence.h index 3060d660a..1592f4272 100644 --- a/korganizer/koeditorrecurrence.h +++ b/korganizer/koeditorrecurrence.h @@ -47,7 +47,7 @@ using namespace KCal; class RecurBase : public TQWidget { public: - RecurBase( TQWidget *tqparent = 0, const char *name = 0 ); + RecurBase( TQWidget *parent = 0, const char *name = 0 ); void setFrequency( int ); int frequency(); @@ -58,10 +58,10 @@ class RecurBase : public TQWidget TQWidget *frequencyEdit(); protected: - static TQComboBox *createWeekCountCombo( TQWidget *tqparent=0, const char *name=0 ); - static TQComboBox *createWeekdayCombo( TQWidget *tqparent=0, const char *name=0 ); - static TQComboBox *createMonthNameCombo( TQWidget *tqparent=0, const char *name=0 ); - TQBoxLayout *createFrequencySpinBar( TQWidget *tqparent, TQLayout *tqlayout, + static TQComboBox *createWeekCountCombo( TQWidget *parent=0, const char *name=0 ); + static TQComboBox *createWeekdayCombo( TQWidget *parent=0, const char *name=0 ); + static TQComboBox *createMonthNameCombo( TQWidget *parent=0, const char *name=0 ); + TQBoxLayout *createFrequencySpinBar( TQWidget *parent, TQLayout *tqlayout, TQString everyText, TQString unitText ); private: @@ -71,13 +71,13 @@ class RecurBase : public TQWidget class RecurDaily : public RecurBase { public: - RecurDaily( TQWidget *tqparent = 0, const char *name = 0 ); + RecurDaily( TQWidget *parent = 0, const char *name = 0 ); }; class RecurWeekly : public RecurBase { public: - RecurWeekly( TQWidget *tqparent = 0, const char *name = 0 ); + RecurWeekly( TQWidget *parent = 0, const char *name = 0 ); void setDays( const TQBitArray & ); TQBitArray days(); @@ -89,7 +89,7 @@ class RecurWeekly : public RecurBase class RecurMonthly : public RecurBase { public: - RecurMonthly( TQWidget *tqparent = 0, const char *name = 0 ); + RecurMonthly( TQWidget *parent = 0, const char *name = 0 ); void setByDay( int day ); void setByPos( int count, int weekday ); @@ -116,7 +116,7 @@ class RecurYearly : public RecurBase public: enum YearlyType { byDay, byPos, byMonth }; - RecurYearly( TQWidget *tqparent = 0, const char *name = 0 ); + RecurYearly( TQWidget *parent = 0, const char *name = 0 ); void setByDay( int day ); void setByPos( int count, int weekday, int month ); @@ -151,7 +151,7 @@ class RecurrenceChooser : public TQWidget Q_OBJECT TQ_OBJECT public: - RecurrenceChooser( TQWidget *tqparent = 0, const char *name = 0 ); + RecurrenceChooser( TQWidget *parent = 0, const char *name = 0 ); enum { Daily, Weekly, Monthly, Yearly }; @@ -185,7 +185,7 @@ class ExceptionsWidget : public TQWidget, public ExceptionsBase Q_OBJECT TQ_OBJECT public: - ExceptionsWidget( TQWidget *tqparent = 0, const char *name = 0 ); + ExceptionsWidget( TQWidget *parent = 0, const char *name = 0 ); void setDates( const DateList & ); DateList dates(); @@ -204,7 +204,7 @@ class ExceptionsWidget : public TQWidget, public ExceptionsBase class ExceptionsDialog : public KDialogBase, public ExceptionsBase { public: - ExceptionsDialog( TQWidget *tqparent, const char *name = 0 ); + ExceptionsDialog( TQWidget *parent, const char *name = 0 ); void setDates( const DateList & ); DateList dates(); @@ -233,7 +233,7 @@ class RecurrenceRangeWidget : public TQWidget, public RecurrenceRangeBase Q_OBJECT TQ_OBJECT public: - RecurrenceRangeWidget( TQWidget *tqparent = 0, const char *name = 0 ); + RecurrenceRangeWidget( TQWidget *parent = 0, const char *name = 0 ); void setDefaults( const TQDateTime &from ); @@ -262,7 +262,7 @@ class RecurrenceRangeWidget : public TQWidget, public RecurrenceRangeBase class RecurrenceRangeDialog : public KDialogBase, public RecurrenceRangeBase { public: - RecurrenceRangeDialog( TQWidget *tqparent = 0, const char *name = 0 ); + RecurrenceRangeDialog( TQWidget *parent = 0, const char *name = 0 ); void setDefaults( const TQDateTime &from ); @@ -284,7 +284,7 @@ class KOEditorRecurrence : public TQWidget Q_OBJECT TQ_OBJECT public: - KOEditorRecurrence ( TQWidget *tqparent = 0, const char *name = 0 ); + KOEditorRecurrence ( TQWidget *parent = 0, const char *name = 0 ); virtual ~KOEditorRecurrence(); enum { Daily, Weekly, Monthly, Yearly }; @@ -351,7 +351,7 @@ class KOEditorRecurrenceDialog : public KDialogBase Q_OBJECT TQ_OBJECT public: - KOEditorRecurrenceDialog( TQWidget *tqparent ); + KOEditorRecurrenceDialog( TQWidget *parent ); KOEditorRecurrence* editor() const { return mRecurrence; } protected slots: |