summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-06-27 18:45:56 (UTC)
committer zautrix <zautrix>2005-06-27 18:45:56 (UTC)
commit427221638f1e652bd57a37835a1de0134266c3f7 (patch) (unidiff)
tree5ce070815756cdaccd6c2f0cd6a02e54a1052675
parent2a6c47afc7688923f427f4a38e3353e3503ab09a (diff)
downloadkdepimpi-427221638f1e652bd57a37835a1de0134266c3f7.zip
kdepimpi-427221638f1e652bd57a37835a1de0134266c3f7.tar.gz
kdepimpi-427221638f1e652bd57a37835a1de0134266c3f7.tar.bz2
fixx
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--korganizer/komonthview.cpp14
-rw-r--r--korganizer/komonthview.h1
2 files changed, 15 insertions, 0 deletions
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp
index 9b0389d..00e5a6f 100644
--- a/korganizer/komonthview.cpp
+++ b/korganizer/komonthview.cpp
@@ -309,2 +309,14 @@ void MonthViewItem::recycle( Incidence *incidence, QDate qd, const QString & s)
309} 309}
310void MonthViewItem::clearData()
311{
312 mDisplayHightlighted = false;
313 setText( "" );
314 mMultiday = 0;
315 mIncidence = 0;
316 mRecur = false;
317 mAlarm = false;
318 mReply = false;
319 mInfo = false;
320 mdayPos = 0;
321}
310bool MonthViewItem::setHighlightedFalse() 322bool MonthViewItem::setHighlightedFalse()
@@ -657,2 +669,4 @@ void MonthViewCell::startUpdateCell()
657 MonthViewItem *item = CurrentAvailItem; 669 MonthViewItem *item = CurrentAvailItem;
670 //item->setHighlightedFalse();
671 item->clearData();
658 CurrentAvailItem = (MonthViewItem *)item->next(); 672 CurrentAvailItem = (MonthViewItem *)item->next();
diff --git a/korganizer/komonthview.h b/korganizer/komonthview.h
index 159af16..ac97860 100644
--- a/korganizer/komonthview.h
+++ b/korganizer/komonthview.h
@@ -109,2 +109,3 @@ class MonthViewItem: public QListBoxItem
109 void recycle( Incidence *incidence, QDate qd, const QString & s); 109 void recycle( Incidence *incidence, QDate qd, const QString & s);
110 void clearData();
110 void setRecur(bool on) { mRecur = on; } 111 void setRecur(bool on) { mRecur = on; }