diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-07-31 17:13:03 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-07-31 17:13:03 +0800 |
commit | 62904a0605d2800801a74bf2f5044512d3bf939c (patch) | |
tree | 308694d214a36bd20eb62c045054d7133f91d8f3 /calendar/gui/alarm-notify | |
parent | ab12a84ac4b241aed23eafdccb8cc6a99053b562 (diff) | |
download | gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar.gz gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar.bz2 gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar.lz gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar.xz gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.tar.zst gsoc2013-evolution-62904a0605d2800801a74bf2f5044512d3bf939c.zip |
Fixes #333423
svn path=/trunk/; revision=32443
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 3 |
1 files changed, 1 insertions, 2 deletions
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); |