aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-02-28 20:16:44 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-02-28 20:16:44 +0800
commit78e33e347a2411e46c3f5e1ba6332bb05789da29 (patch)
tree1923f1c8363c6a1686921e4da9d99c22b394aa48
parent3958832d1dcaf8394ffdd426b9ed5081a4883b60 (diff)
downloadgsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar.gz
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar.bz2
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar.lz
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar.xz
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.tar.zst
gsoc2013-evolution-78e33e347a2411e46c3f5e1ba6332bb05789da29.zip
fixes #332726
svn path=/trunk/; revision=31610
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/dialogs/recur-comp.c9
2 files changed, 6 insertions, 9 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 8767bee865..9b971b8a0d 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-28 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #332726
+ * gui/dialogs/recur-comp.c: (recur_component_dialog): Dont
+ remove the recurrence id, the backend would remove it.
+
2006-02-23 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #330677
diff --git a/calendar/gui/dialogs/recur-comp.c b/calendar/gui/dialogs/recur-comp.c
index 8fa1e5ae35..07cc441326 100644
--- a/calendar/gui/dialogs/recur-comp.c
+++ b/calendar/gui/dialogs/recur-comp.c
@@ -122,15 +122,6 @@ recur_component_dialog (ECal *client,
else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rb_all))) {
*mod = CALOBJ_MOD_ALL;
- /* remove the RECURRENCE-ID from the object if modifying ALL instances */
- if (ret) {
- icalproperty *prop;
-
- prop = icalcomponent_get_first_property (e_cal_component_get_icalcomponent (comp),
- ICAL_RECURRENCEID_PROPERTY);
- if (prop)
- icalcomponent_remove_property (e_cal_component_get_icalcomponent (comp), prop);
- }
}
gtk_widget_destroy (dialog);