From 38168a2e40c23292e6e9ac8472f06a754e7981e4 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Tue, 25 Jul 2000 22:01:22 +0000 Subject: New function. (scan_property): Handle the RDATE property. (scan_period): 2000-07-25 Federico Mena Quintero * cal-util/cal-component.c (cal_component_free_period_list): New function. (scan_property): Handle the RDATE property. (scan_period): Likewise. (free_icalcomponent): Likewise. (get_period_list): Likewise. (set_period_list): Likewise. (cal_component_get_rdate_list): Likewise. (cal_component_set_rdate_list): Likewise. (scan_text): Simplify a bit since we only handle the ALTREP parameter; there is no need to iterate over all parameters. (scan_datetime): Simplify; just handle the TZID parameter. (scan_summary): Simplify; just handle the ALTREP parameter. (cal_component_get_as_string): New function. * idl/evolution-calendar.idl (CalObjType): Removed the TYPE_OTHER; now we only expose the types of objects we know about. * cal-util/cal-util.h (CalObjType): Likewise. * cal-client/cal-client.c (cal_client_get_n_objects): Likewise. (cal_client_get_uids): Likewise. * conduits/calendar/calendar-conduit.c (get_calendar_objects): Likewise. (check_for_slow_setting): Likewise. * pcs/cal-backend-imc.c (count_objects): Likewise. (build_uids_list): Likewise. * pcs/cal.c (Cal_get_uids): Likewise. (Cal_get_n_objects): Likewise. svn path=/trunk/; revision=4336 --- calendar/pcs/cal-backend-imc.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'calendar/pcs/cal-backend-imc.c') diff --git a/calendar/pcs/cal-backend-imc.c b/calendar/pcs/cal-backend-imc.c index 20c0292793..29015a70cc 100644 --- a/calendar/pcs/cal-backend-imc.c +++ b/calendar/pcs/cal-backend-imc.c @@ -869,8 +869,6 @@ count_objects (gpointer key, gpointer value, gpointer data) store = (c->type & CALOBJ_TYPE_TODO) != 0; else if (ico->type == ICAL_JOURNAL) store = (c->type & CALOBJ_TYPE_JOURNAL) != 0; - else - store = (c->type & CALOBJ_TYPE_OTHER) != 0; if (store) c->n++; @@ -950,8 +948,6 @@ build_uids_list (gpointer key, gpointer value, gpointer data) store = (c->type & CALOBJ_TYPE_TODO) ? TRUE : FALSE; else if (ico->type == ICAL_JOURNAL) store = (c->type & CALOBJ_TYPE_JOURNAL) ? TRUE : FALSE; - else - store = (c->type & CALOBJ_TYPE_OTHER) ? TRUE : FALSE; if (store) c->uid_list = g_list_prepend (c->uid_list, g_strdup (ico->uid)); @@ -970,9 +966,6 @@ cal_backend_imc_get_uids (CalBackend *backend, CalObjType type) g_return_val_if_fail (priv->loaded, NULL); - /* We go through the hash table instead of the lists of particular - * object types so that we can pick up CALOBJ_TYPE_OTHER objects. - */ c.type = type; c.uid_list = NULL; g_hash_table_foreach (priv->object_hash, build_uids_list, &c); -- cgit v1.2.3