summaryrefslogtreecommitdiffstats
path: root/korganizer/koeditorrecurrence.h
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koeditorrecurrence.h')
-rw-r--r--korganizer/koeditorrecurrence.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/korganizer/koeditorrecurrence.h b/korganizer/koeditorrecurrence.h
index 0ce9c6dda..05074cdd9 100644
--- a/korganizer/koeditorrecurrence.h
+++ b/korganizer/koeditorrecurrence.h
@@ -297,6 +297,9 @@ class KOEditorRecurrence : public QWidget
bool doesRecur();
+ void saveValues();
+ void restoreValues();
+
public slots:
void setRecurrenceEnabled( bool );
void setDateTimes( const TQDateTime &start, const TQDateTime &end );
@@ -311,6 +314,7 @@ class KOEditorRecurrence : public QWidget
void showRecurrenceRangeDialog();
private:
+ Recurrence mSaveRec;
TQCheckBox *mEnabledCheck;
TQGroupBox *mTimeGroupBox;
@@ -345,8 +349,13 @@ class KOEditorRecurrenceDialog : public KDialogBase
KOEditorRecurrenceDialog( TQWidget *parent );
KOEditorRecurrence* editor() const { return mRecurrence; }
+ protected slots:
+ void slotOk();
+ void slotCancel();
+
private:
KOEditorRecurrence *mRecurrence;
+ bool mRecurEnabled;
};
#endif