diff options
Diffstat (limited to 'korganizer/kowhatsnextview.h')
-rw-r--r-- | korganizer/kowhatsnextview.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/korganizer/kowhatsnextview.h b/korganizer/kowhatsnextview.h index 6f49ab2b1..69c6a62eb 100644 --- a/korganizer/kowhatsnextview.h +++ b/korganizer/kowhatsnextview.h @@ -57,17 +57,19 @@ class KOWhatsNextView : public KOrg::BaseView virtual int currentDateCount(); virtual Incidence::List selectedIncidences() { return Incidence::List(); } - DateList selectedDates() { return DateList(); } + DateList selectedIncidenceDates() { return DateList(); } + + bool supportsDateNavigation() const { return true; } public slots: virtual void updateView(); virtual void showDates(const TQDate &start, const TQDate &end); - virtual void showIncidences( const Incidence::List &incidenceList ); + virtual void showIncidences( const Incidence::List &incidenceList, const TQDate &date ); void changeIncidenceDisplay(Incidence *, int); protected: - void appendEvent( Incidence *, const TQDateTime &start = TQDateTime(), + void appendEvent( Incidence *, const TQDateTime &start = TQDateTime(), const TQDateTime &end = TQDateTime() ); void appendTodo( Incidence * ); |