From 8f6adf987eabf47bbe8266f6a0f29de1e7ce2e68 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Tue, 28 Mar 2000 08:05:08 +0000 Subject: Use ical_object_to_string(). 2000-03-27 Federico Mena Quintero * pcs/cal-backend.c (cal_backend_get_object): Use ical_object_to_string(). * cal-util/calobj.c (ical_object_to_string): Moved over from pcs/cal-backend.c (was string_from_ical_object). (get_calendar_base_vobject): Likewise, moved over from pcs/cal-backend.c. * cal-util/cal-util.c: Removed string_to_ical_object(); the correct function is in calobj.[ch], called ical_object_find_in_string(). Removed ical_object_to_string, since we now implement it in calobj.c. * cal-util/calobj.c: Removed ical_object_new_from_string(); see above. * idl/evolution-calendar.idl (CalObjInstance): Calendar object instances now contain only the UID for the object, not the whole string representation of the object. This allows clients to implement caching of objects if they wish. * pcs/cal.c (Cal_get_events_in_range): Likewise. * pcs/cal-backend.c (build_event_list): Likewise. * cal-client/cal-client.c (cal_client_get_events_in_range): Likewise. * cal-util/cal-util.h (CalObjInstance): Likewise. * cal-util/cal-util.c (cal_obj_instance_list_free): Likewise. (cal_obj_uid_list_free): Assert that the UIDs in the list are not NULL. * pcs/tlacuache.gnorba (repo_id): The calendar factory also supports the Unknown interface. svn path=/trunk/; revision=2211 --- calendar/cal-util/cal-util.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'calendar/cal-util/cal-util.h') diff --git a/calendar/cal-util/cal-util.h b/calendar/cal-util/cal-util.h index c5c3fcdb00..6adb7104a5 100644 --- a/calendar/cal-util/cal-util.h +++ b/calendar/cal-util/cal-util.h @@ -35,8 +35,7 @@ BEGIN_GNOME_DECLS * recurrence, or an alarm trigger of a `real' calendar object. */ typedef struct { - char *uid; /* Identifier for the object wrapped in calobj */ - char *calobj; /* String representation of calendar object */ + char *uid; /* UID of the object */ time_t start; /* Start time of instance */ time_t end; /* End time of instance */ } CalObjInstance; @@ -54,9 +53,6 @@ typedef enum { void cal_obj_uid_list_free (GList *list); -char *ical_object_to_string (iCalObject *ico); -iCalObject *string_to_ical_object (char *); - END_GNOME_DECLS #endif -- cgit v1.2.3