diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-09-02 00:44:09 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-09-02 00:44:09 +0800 |
commit | 6fa7bb56538b93fcd926b2b5c6f63168c226ea60 (patch) | |
tree | 58c3fdad67d5af68353e5bd415605dbd6800ee9f /calendar/conduits | |
parent | ba9c7d021709966f75200f778b1ba5dc3ff7ab04 (diff) | |
download | gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar.gz gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar.bz2 gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar.lz gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar.xz gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.tar.zst gsoc2013-evolution-6fa7bb56538b93fcd926b2b5c6f63168c226ea60.zip |
Update for new libical. Conduits should atleast compile again.
2000-09-01 JP Rosevear <jpr@helixcode.com>
* conduits/todo/todo-conduit.c: Update for new libical.
Conduits should atleast compile again.
* conduits/calendar/calendar-conduit.c: ditto
* Makefile.am: Build the conduits only when they've been
enabled.
svn path=/trunk/; revision=5165
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 10 | ||||
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 8 |
2 files changed, 8 insertions, 10 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index 8094fee315..7baf099060 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -9,7 +9,6 @@ #include <errno.h> #include <cal-client/cal-client.h> -// #include <cal-util/calobj.h> #include <cal-util/timeutil.h> #include <pi-source.h> #include <pi-socket.h> @@ -407,9 +406,8 @@ ical_from_remote_record(GnomePilotConduitStandardAbs *conduit, CalComponent *in_obj) { CalComponent *obj; - // int i; struct Appointment a; - struct icaltimetype now = icaltimetype_from_timet (time (NULL), FALSE); + struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, FALSE); CalComponentText summary = {NULL, NULL}; CalComponentText comment = {NULL, NULL}; @@ -477,7 +475,7 @@ ical_from_remote_record(GnomePilotConduitStandardAbs *conduit, struct icaltimetype dtstart_ictt; CalComponentDateTime dtstart; - dtstart_ictt = icaltimetype_from_timet (mktime (& a.begin), FALSE); + dtstart_ictt = icaltime_from_timet (mktime (& a.begin), FALSE, FALSE); dtstart.value = &dtstart_ictt; dtstart.tzid = NULL; cal_component_set_dtstart (obj, &dtstart); @@ -489,7 +487,7 @@ ical_from_remote_record(GnomePilotConduitStandardAbs *conduit, struct icaltimetype dtend_ictt; CalComponentDateTime dtend; - dtend_ictt = icaltimetype_from_timet (mktime (& a.end), FALSE); + dtend_ictt = icaltime_from_timet (mktime (& a.end), FALSE, FALSE); dtend.value = &dtend_ictt; dtend.tzid = NULL; cal_component_set_dtend (obj, &dtend); @@ -658,7 +656,7 @@ update_record (GnomePilotConduitStandardAbs *conduit, } if (status != CAL_CLIENT_GET_SUCCESS) { - struct icaltimetype now = icaltimetype_from_timet (time (NULL), FALSE); + struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, FALSE); printf ("failed, making a new one.\n"); diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 2a3c643a3d..3d85dbfa06 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -452,7 +452,7 @@ ical_from_remote_record (GnomePilotConduitStandardAbs *conduit, { CalComponent *obj; struct ToDo todo; - struct icaltimetype now = icaltimetype_from_timet (time (NULL), FALSE); + struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, FALSE); CalComponentText summary = {NULL, NULL}; CalComponentText comment = {NULL, NULL}; @@ -505,7 +505,7 @@ ical_from_remote_record (GnomePilotConduitStandardAbs *conduit, struct icaltimetype dtend_ictt; CalComponentDateTime dtend; - dtend_ictt = icaltimetype_from_timet (mktime (& todo.due), FALSE); + dtend_ictt = icaltime_from_timet (mktime (& todo.due), FALSE, FALSE); dtend.value = &dtend_ictt; dtend.tzid = NULL; cal_component_set_dtend (obj, &dtend); @@ -594,7 +594,7 @@ update_record (GnomePilotConduitStandardAbs *conduit, } if (status != CAL_CLIENT_GET_SUCCESS) { - struct icaltimetype now = icaltimetype_from_timet (time (NULL), FALSE); + struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, FALSE); LOG ("failed, making a new one.\n"); @@ -1110,7 +1110,7 @@ transmit (GnomePilotConduitStandardAbs *conduit, time_t dtend_time_t; cal_component_get_dtend (local->ical, &dtend); - dtend_time_t = time_from_icaltimetype (*dtend.value); + dtend_time_t = icaltime_as_timet (*dtend.value); local->todo->due = *localtime (&dtend_time_t); local->todo->indefinite = (dtend.value->year == 0); |