From 89ef5539d9a04cf249987a9b43cd31b6bcd8797d Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 24 Feb 1999 00:40:15 +0000 Subject: Save the owner/organizer of the event. (ical_object_create_from_vobject): 1999-02-23 Miguel de Icaza * calobj.c (ical_object_to_vobject): Save the owner/organizer of the event. (ical_object_create_from_vobject): Load the owner/organizer of the event. * gncal-full-day.c (delete_occurance): Assign child to data (fixes crash on "delete this occurrance"). svn path=/trunk/; revision=689 --- calendar/pcs/calobj.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'calendar/pcs') diff --git a/calendar/pcs/calobj.c b/calendar/pcs/calobj.c index a615c0e313..6ed9db187a 100644 --- a/calendar/pcs/calobj.c +++ b/calendar/pcs/calobj.c @@ -623,6 +623,12 @@ ical_object_create_from_vobject (VObject *o, const char *object_name) free (the_str); } + /* Organizer */ + if (has (o, VCOrgNameProp)){ + ical->organizer = g_strdup (str_val (vo)); + free (the_str); + } + /* related */ if (has (o, VCRelatedToProp)){ ical->related = set_list (str_val (vo)); @@ -899,6 +905,10 @@ ical_object_to_vobject (iCalObject *ical) /* transparency */ addPropValue (o, VCTranspProp, to_str (ical->transp)); + /* Owenr/organizer */ + if (ical->organizer) + addPropValue (o, VCOrgNameProp, ical->organizer); + /* related */ if (ical->related) store_list (o, VCRelatedToProp, ical->related); -- cgit v1.2.3