-rw-r--r-- | libkcal/calendarlocal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkcal/calendarlocal.cpp b/libkcal/calendarlocal.cpp index 18f1af8..418bfca 100644 --- a/libkcal/calendarlocal.cpp +++ b/libkcal/calendarlocal.cpp @@ -748,13 +748,13 @@ QPtrList<Event> CalendarLocal::rawEvents( const QDate &start, const QDate &end, if ( inclusive ) { if ( s >= start && e <= end ) { eventList.append( event ); } } else { - if ( ( s >= start && s <= end ) || ( e >= start && e <= end ) ) { + if ( ( e >= start && s <= end ) ) { eventList.append( event ); } } } } |