aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/icalendar-save.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/pcs/icalendar-save.c')
-rw-r--r--calendar/pcs/icalendar-save.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/pcs/icalendar-save.c b/calendar/pcs/icalendar-save.c
index 1b35d2dadf..14cdcca65c 100644
--- a/calendar/pcs/icalendar-save.c
+++ b/calendar/pcs/icalendar-save.c
@@ -184,7 +184,7 @@ icalcomponent_create_from_ical_object (iCalObject *ical)
GList *cur;
for (cur = ical->attendee; cur; cur = cur->next) {
iCalPerson *person = (iCalPerson *) cur->data;
- prop = icalproperty_new_attendee ("FIX ME");
+ prop = icalproperty_new_attendee (person->addr);
unparse_person (person, prop);
icalcomponent_add_property (comp, prop);
}
@@ -196,7 +196,7 @@ icalcomponent_create_from_ical_object (iCalObject *ical)
GList *cur;
for (cur = ical->contact; cur; cur = cur->next) {
iCalPerson *person = (iCalPerson *) cur->data;
- prop = icalproperty_new_contact ("FIX ME");
+ prop = icalproperty_new_contact (person->addr);
unparse_person (person, prop);
icalcomponent_add_property (comp, prop);
}
@@ -204,7 +204,7 @@ icalcomponent_create_from_ical_object (iCalObject *ical)
/*** organizer ***/
if (ical->organizer) {
- prop = icalproperty_new_organizer ("FIX ME");
+ prop = icalproperty_new_organizer (ical->organizer->addr);
unparse_person (ical->organizer, prop);
icalcomponent_add_property (comp, prop);
}