Version: (using KDE KDE 3.1.4) Installed from: SuSE RPMs Steps to reproduce problem: 1. Create a new To-do with a reminder. 2. Mark the To-do as completed by clicking on its checkbox. 3. At the designated time, the reminder pops up anyway. Since people add reminders to To-do's to remind them to do the To-do, it seems rather pointless to raise the alarm for completed To-do's. KOrganizer should suppress reminders for completed To-do's, or at least make this the default behaviour and give the user the choice of overriding it when creating the To-do.
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 ); }