aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/icalendar.c
diff options
context:
space:
mode:
authorSeth Alves <alves@src.gnome.org>2000-04-22 08:18:27 +0800
committerSeth Alves <alves@src.gnome.org>2000-04-22 08:18:27 +0800
commit05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36 (patch)
treeac2354a0ca03bb20c9d80f28816188c6324f0240 /calendar/pcs/icalendar.c
parented4fea3fe3bdd9eb41feae648a0dbe84f410ad1c (diff)
downloadgsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar.gz
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar.bz2
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar.lz
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar.xz
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.tar.zst
gsoc2013-evolution-05a7bb9ef8ed8327fde0b04a0cab854d2c4a5d36.zip
start on code to do the opposite of icalendar.c (convert from iCalObjects
* pcs/icalendar-save.c: start on code to do the opposite of icalendar.c (convert from iCalObjects to libical's icalcomponents). svn path=/trunk/; revision=2550
Diffstat (limited to 'calendar/pcs/icalendar.c')
-rw-r--r--calendar/pcs/icalendar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/pcs/icalendar.c b/calendar/pcs/icalendar.c
index 1dcbadc817..8a15bb3cb4 100644
--- a/calendar/pcs/icalendar.c
+++ b/calendar/pcs/icalendar.c
@@ -223,8 +223,8 @@ ical_object_create_from_icalcomponent (icalcomponent* comp)
case ICAL_FREEBUSY_PROPERTY:
period = icalproperty_get_freebusy (prop);
ical->dtstart = icaltime_to_timet (&(period.start));
- /* FIXME: period.end is specified as being relative to start, so
-this may not be correct */
+ /* FIXME: period.end is specified as being relative
+ to start, so this may not be correct */
ical->dtend = icaltime_to_timet (&(period.end));
break;
case ICAL_TRANSP_PROPERTY:
@@ -534,7 +534,7 @@ parse_person (icalproperty* prop, gchar* value)
param = icalproperty_get_first_parameter (prop, ICAL_SENTBY_PARAMETER
);
- copy_str (&ret->sent_by,
+ copy_str (&ret->sent_by,
icalparameter_get_sentby (param));
param = icalproperty_get_first_parameter (prop, ICAL_DIR_PARAMETER);