Bug #668768 - Copy&paste of appointment occurrence creates two appointments

This commit is contained in:
Milan Crha
2012-04-24 17:12:33 +02:00
parent 80ee0ba622
commit 031c2b6b55

View File

@ -580,14 +580,7 @@ calendar_view_copy_clipboard (ESelectable *selectable)
new_icalcomp = icalcomponent_new_clone (event->comp_data->icalcomp);
/* remove RECURRENCE-IDs from copied objects */
if (e_cal_util_component_is_instance (new_icalcomp)) {
icalproperty *prop;
prop = icalcomponent_get_first_property (new_icalcomp, ICAL_RECURRENCEID_PROPERTY);
if (prop)
icalcomponent_remove_property (new_icalcomp, prop);
}
/* do not remove RECURRENCE-IDs from copied objects */
icalcomponent_add_component (vcal_comp, new_icalcomp);
}