diff options
Diffstat (limited to 'korganizer/komonthview.h')
-rw-r--r-- | korganizer/komonthview.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index 706a2e9fb..c7537c2fb 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h @@ -32,11 +32,12 @@ #include "koeventview.h" class KNoScrollListBox; +class MonthViewCell; class KOMonthCellToolTip : public TQToolTip { public: - KOMonthCellToolTip (TQWidget* parent, Calendar *calendar, const TQDate &date, KNoScrollListBox* lv ); + KOMonthCellToolTip (TQWidget* parent, Calendar *calendar, const TQDate &date, KNoScrollListBox* lv, MonthViewCell* cl); protected: void maybeTip( const TQPoint & pos); @@ -45,6 +46,7 @@ class KOMonthCellToolTip : public TQToolTip Calendar *mCalendar; TQDate mDate; KNoScrollListBox* eventlist; + MonthViewCell* cell; }; @@ -140,6 +142,8 @@ class MonthViewCell : public TQWidget class CreateItemVisitor; MonthViewCell( KOMonthView * ); + TQString holidayString( ) { return mHolidayString; } + /** Sets the date of the cell */ void setDate( const TQDate & ); /** @return Date of cell */ |