diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-25 05:34:24 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-25 05:34:24 +0800 |
commit | f9d5c373587332aac4fb4e012ad0c99c3880e8bf (patch) | |
tree | 39435ae4513fac0bc6d903ed842f88eccc1dcdda /calendar/gui/gnome-cal.c | |
parent | ccbbda543ae5171ad07d04ae1d1d16f39a93fea3 (diff) | |
download | gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.gz gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.bz2 gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.lz gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.xz gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.zst gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.zip |
Update for libical 0.19
2000-08-24 JP Rosevear <jpr@helixcode.com>
* Update for libical 0.19
svn path=/trunk/; revision=5024
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index c445ac7317..ee5215164a 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1420,10 +1420,10 @@ gnome_calendar_new_appointment (GnomeCalendar *gcal) comp = cal_component_new (); cal_component_set_new_vtype (comp, CAL_COMPONENT_EVENT); - itt = icaltimetype_from_timet (dtstart, 0); + itt = icaltime_from_timet (dtstart, 0, TRUE); cal_component_set_dtstart (comp, &dt); - itt = icaltimetype_from_timet (dtend, 0); + itt = icaltime_from_timet (dtend, 0, TRUE); cal_component_set_dtend (comp, &dt); gnome_calendar_edit_object (gcal, comp); |