-rw-r--r-- | core/pim/datebook/datebookday.cpp | 6 |
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 @@ -305,10 +305,11 @@ void DateBookDay::getEvents() { widgetList.clear(); - 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 ); connect( w, SIGNAL( deleteMe( const Event & ) ), this, SIGNAL( removeEvent( const Event & ) ) ); @@ -318,6 +319,7 @@ void DateBookDay::getEvents() this, SIGNAL( beamEvent( const Event & ) ) ); widgetList.append( w ); } + } } |