summaryrefslogtreecommitdiff
path: root/core/pim
authorumopapisdn <umopapisdn>2003-03-23 20:33:00 (UTC)
committer umopapisdn <umopapisdn>2003-03-23 20:33:00 (UTC)
commitb5606a63c9f3524f9475b6ac79f0b6bcc7162fa6 (patch) (side-by-side diff)
treed4c7bd2dbf63858d3ac70926514d91a4bd6d63e0 /core/pim
parentdfa17505b14011b50822d50c925cc6aa0299b1b4 (diff)
downloadopie-b5606a63c9f3524f9475b6ac79f0b6bcc7162fa6.zip
opie-b5606a63c9f3524f9475b6ac79f0b6bcc7162fa6.tar.gz
opie-b5606a63c9f3524f9475b6ac79f0b6bcc7162fa6.tar.bz2
Bugfix: (bug #0000211) Events ending at mat the following day. Fix for dayview.
Diffstat (limited to 'core/pim') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook/datebookday.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/pim/datebook/datebookday.cpp b/core/pim/datebook/datebookday.cpp
index a6a1be3..42f026a 100644
--- a/core/pim/datebook/datebookday.cpp
+++ b/core/pim/datebook/datebookday.cpp
@@ -307,6 +307,7 @@ void DateBookDay::getEvents()
- QValueList<EffectiveEvent> eventList = db->getEffectiveEvents( currDate,
- currDate );
+ QValueList<EffectiveEvent> eventList = db->getEffectiveEvents( currDate, currDate );
QValueListIterator<EffectiveEvent> it;
for ( it = eventList.begin(); it != eventList.end(); ++it ) {
+ EffectiveEvent ev=*it;
+ if(!(ev.end().hour()==ev.start().hour() && ev.end().minute()==ev.start().minute())) { // Skip effective events with no duration. (i.e ending at 00:00)
DateBookDayWidget* w = new DateBookDayWidget( *it, this );
@@ -320,2 +321,3 @@ void DateBookDay::getEvents()
}
+ }