summaryrefslogtreecommitdiff
path: root/core/pim/datebook/datebookweekheaderimpl.h
Side-by-side diff
Diffstat (limited to 'core/pim/datebook/datebookweekheaderimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebookweekheaderimpl.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/core/pim/datebook/datebookweekheaderimpl.h b/core/pim/datebook/datebookweekheaderimpl.h
index 2e5a6ca..1ab1d52 100644
--- a/core/pim/datebook/datebookweekheaderimpl.h
+++ b/core/pim/datebook/datebookweekheaderimpl.h
@@ -34,3 +34,3 @@ public:
- void setDate( int y, int w );
+ void setDate(const QDate &d);
void setStartOfWeek( bool onMonday );
@@ -42,3 +42,2 @@ public slots:
void pickDate();
- void yearChanged( int );
void nextMonth();
@@ -47,3 +46,2 @@ public slots:
void prevWeek();
- void weekChanged( int );
void setDate( int y, int m, int d);
@@ -51,12 +49,7 @@ public slots:
protected slots:
- void keyPressEvent(QKeyEvent *e)
- {
- e->ignore();
- }
+ void keyPressEvent(QKeyEvent *e) { e->ignore(); }
private:
- int year,
- week;
+ QDate date;
bool bStartOnMonday;
-
};