aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/calobj.c5
-rw-r--r--calendar/pcs/calobj.h1
2 files changed, 3 insertions, 3 deletions
diff --git a/calendar/pcs/calobj.c b/calendar/pcs/calobj.c
index 8c5605c688..8504d7a95b 100644
--- a/calendar/pcs/calobj.c
+++ b/calendar/pcs/calobj.c
@@ -349,7 +349,7 @@ ical_object_to_vobject (iCalObject *ical)
/* resources */
if (ical->categories)
- store_list (o, VCCategoriesProp, ical->resources, ";");
+ store_list (o, VCCategoriesProp, ical->resources, ';');
/* priority */
addPropValue (o, VCPriorityProp, to_str (ical->priority));
@@ -358,7 +358,7 @@ ical_object_to_vobject (iCalObject *ical)
addPropValue (o, VCTranspProp, to_str (ical->transp));
/* related */
- store_list (o, VCRelatedToProp, ical->related, ";");
+ store_list (o, VCRelatedToProp, ical->related, ';');
/* attach */
for (l = ical->attach; l; l = l->next)
@@ -371,4 +371,3 @@ ical_object_to_vobject (iCalObject *ical)
/* FIXME: alarms */
return o;
}
-
diff --git a/calendar/pcs/calobj.h b/calendar/pcs/calobj.h
index 00dbd5c63e..0fe85c6ca3 100644
--- a/calendar/pcs/calobj.h
+++ b/calendar/pcs/calobj.h
@@ -120,6 +120,7 @@ iCalObject *ical_new (char *comment, char *organizer, char *summary);
iCalObject *ical_object_new (void);
void ical_object_destroy (iCalObject *ico);
iCalObject *ical_object_create_from_vobject (VObject *obj, const char *object_name);
+VObject *ical_object_to_vobject (iCalObject *ical);
END_GNOME_DECLS