diff options
Diffstat (limited to 'korganizer/korgac')
-rw-r--r-- | korganizer/korgac/alarmdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/korgac/alarmdialog.cpp b/korganizer/korgac/alarmdialog.cpp index bf9c29a2e..9f711d609 100644 --- a/korganizer/korgac/alarmdialog.cpp +++ b/korganizer/korgac/alarmdialog.cpp @@ -498,9 +498,9 @@ void AlarmDialog::eventNotification() found = true; item->mNotified = true; Alarm::List alarms = incidence->alarms(); - Alarm::List::ConstIterator it; - for ( it = alarms.begin(); it != alarms.end(); ++it ) { - Alarm *alarm = *it; + Alarm::List::ConstIterator c_it; + for ( c_it = alarms.begin(); c_it != alarms.end(); ++c_it ) { + Alarm *alarm = *c_it; // FIXME: Check whether this should be done for all multiple alarms if (alarm->type() == Alarm::Procedure) { // FIXME: Add a message box asking whether the procedure should really be executed |