author | zautrix <zautrix> | 2005-06-27 19:29:38 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-27 19:29:38 (UTC) |
commit | d730e4b5cd81965f224b69efcc91dd58253f0b98 (patch) (side-by-side diff) | |
tree | 38874ec3d889bee7ab12a79a1ef690e6c47aac5f /korganizer/komonthview.h | |
parent | 427221638f1e652bd57a37835a1de0134266c3f7 (diff) | |
download | kdepimpi-d730e4b5cd81965f224b69efcc91dd58253f0b98.zip kdepimpi-d730e4b5cd81965f224b69efcc91dd58253f0b98.tar.gz kdepimpi-d730e4b5cd81965f224b69efcc91dd58253f0b98.tar.bz2 |
fixes
-rw-r--r-- | korganizer/komonthview.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h index ac97860..2622d10 100644 --- a/korganizer/komonthview.h +++ b/korganizer/komonthview.h @@ -104,11 +104,10 @@ class KNoScrollListBox: public QListBox class MonthViewItem: public QListBoxItem { public: - MonthViewItem( Incidence *, QDate qd, const QString & title ); - void recycle( Incidence *incidence, QDate qd, const QString & s); - void clearData(); + MonthViewItem( Incidence *,const QString & title ); + void recycle( Incidence *incidence, const QString & s); void setRecur(bool on) { mRecur = on; } void setAlarm(bool on) { mAlarm = on; } void setReply(bool on) { mReply = on; } void setMoreInfo(bool on) { mInfo = on; } @@ -122,9 +121,8 @@ class MonthViewItem: public QListBoxItem void setPalette(const QPalette &p) { mPalette = p; } QPalette palette() const { return mPalette; } bool setHighlightedFalse(); Incidence *incidence() const { return mIncidence; } - QDate incidenceDate() { return mDate; } protected: virtual void paint(QPainter *); virtual int height(const QListBox *) const; |