| Summary: | Alarms triggered for completed To-do's | ||
|---|---|---|---|
| Product: | [Applications] korganizer | Reporter: | Tristan Miller <psychonaut> |
| Component: | general | Assignee: | Cornelius Schumacher <schumacher> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Tristan Miller
2003-10-26 21:42:00 UTC
CVS commit by kainhofe: Don't show alarms for completed todo items. CCMAIL: 66651-done@bugs.kde.org M +1 -1 calendarlocal.cpp 1.57 --- kdepim/libkcal/calendarlocal.cpp #1.56:1.57 @@ -202,5 +202,5 @@ Alarm::List CalendarLocal::alarms( const Todo::List::ConstIterator it2; for( it2 = mTodoList.begin(); it2 != mTodoList.end(); ++it2 ) { - appendAlarms( alarms, *it2, from, to ); + if (! (*it2)->isCompleted() ) appendAlarms( alarms, *it2, from, to ); } |