From 60d236430a706fe3d1ebeb0d7d504d2c685c33e3 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 9 Jan 2003 18:17:52 +0000 Subject: Allow recur_id to be NULL to clear the recurrence id. (Based on a story by * cal-util/cal-component.c (cal_component_set_recurid): Allow recur_id to be NULL to clear the recurrence id. (Based on a story by JP on evolution-1-2-recurid-branch) * gui/print.c: Remove unused gnome-print-copies.h #include * pcs/query.c (query_new): Use g_object_weak_ref rather than connecting to "destroy" (which doesn't actually exist on a CalBackend) (backend_destroyed_cb): Update prototype. svn path=/trunk/; revision=19365 --- calendar/cal-util/cal-component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'calendar/cal-util') diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c index 50c2ad95d8..a5300a9605 100644 --- a/calendar/cal-util/cal-component.c +++ b/calendar/cal-util/cal-component.c @@ -3238,7 +3238,7 @@ cal_component_set_recurid (CalComponent *comp, CalComponentRange *recur_id) set_datetime (comp, &priv->recur_id.recur_time, icalproperty_new_recurrenceid, icalproperty_set_recurrenceid, - &recur_id->datetime); + recur_id ? &recur_id->datetime : NULL); } /** -- cgit v1.2.3