aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-08-23 09:57:25 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-23 09:57:25 +0800
commite27c0f7d1a89c33e7c81de58984c7fb043f102f6 (patch)
treea4c7af8b9108b897910f1fc96f01d175570f3204 /calendar
parentd464c77c920ab042ac4c16caf78a4d5c02fb6681 (diff)
downloadgsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.gz
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.bz2
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.lz
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.xz
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.tar.zst
gsoc2013-evolution-e27c0f7d1a89c33e7c81de58984c7fb043f102f6.zip
Unset the priv->updating flag before returning in the case the component
2001-08-22 Federico Mena Quintero <federico@ximian.com> * gui/dialogs/recurrence-page.c (recurrence_page_fill_widgets): Unset the priv->updating flag before returning in the case the component has no recurrence information. Fixes bug #6850. svn path=/trunk/; revision=12413
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/recurrence-page.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index ef44fa960e..bc8b72e02f 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,11 @@
2001-08-22 Federico Mena Quintero <federico@ximian.com>
+ * gui/dialogs/recurrence-page.c (recurrence_page_fill_widgets):
+ Unset the priv->updating flag before returning in the case the
+ component has no recurrence information. Fixes bug #6850.
+
+2001-08-22 Federico Mena Quintero <federico@ximian.com>
+
* gui/alarm-notify/alarm-queue.c (QueuedAlarm): Added a snooze
flag to differentiate snoozed alarms from real occurrences.
(add_component_alarms): Do not specify a destroy function for the
diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c
index f06d8f76ec..586a291bfb 100644
--- a/calendar/gui/dialogs/recurrence-page.c
+++ b/calendar/gui/dialogs/recurrence-page.c
@@ -1449,6 +1449,8 @@ recurrence_page_fill_widgets (CompEditorPage *page, CalComponent *comp)
sensitize_recur_widgets (rpage);
preview_recur (rpage);
+
+ priv->updating = FALSE;
return;
}