aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c3
2 files changed, 9 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index d8bb0afb2c..a5786a3a6d 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,13 @@
2006-07-31 Chenthill Palanisamy <pchenthill@novell.com>
+ Fixes #333423
+ * gui/alarm-notify/alarm-queue.c:
+ (notify_dialog_cb): Need not get the next iter through
+ the tree model, as gtk list store would store the next
+ valid iter in iter.
+
+2006-07-31 Chenthill Palanisamy <pchenthill@novell.com>
+
Fixes #323499
* gui/dialogs/recurrence-page.c: (interval_selection_done_cb),
(ending_selection_done_cb), (init_widgets): Listen to the
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index c1d6f5af14..2ee3cdeaaf 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -1248,8 +1248,7 @@ notify_dialog_cb (AlarmNotifyResult result, int snooze_mins, gpointer data)
/* Maybe we should warn about this first? */
while (valid) {
- gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
- valid = gtk_tree_model_iter_next (model, &iter);
+ valid = gtk_list_store_remove (GTK_LIST_STORE (model), &iter);
}
gtk_widget_destroy (alarm_notifications_dialog->dialog);