aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util/cal-component.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-07-03 10:24:27 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-07-03 10:24:27 +0800
commit9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d (patch)
treefd7368330fdac022a4b5e458acb7f7be40397269 /calendar/cal-util/cal-component.h
parent38ec332283a06e014f2b73161a8eaf03464549d3 (diff)
downloadgsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar.gz
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar.bz2
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar.lz
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar.xz
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.tar.zst
gsoc2013-evolution-9ec7ff026c599c7e28b22e1f5cb8cb73b62cde9d.zip
Handle CATEGORIES. This can appear multiple times, so we maintain a list.
2000-07-02 Federico Mena Quintero <federico@helixcode.com> * cal-util/cal-component.c (scan_categories): Handle CATEGORIES. This can appear multiple times, so we maintain a list. We compress them later to a single property with multiple values. (cal_component_get_categories_list): Ditto. (cal_component_set_categories_list): Ditto. (cal_component_free_categories_list): Ditto. (free_icalcomponent): Properly free the mappings. svn path=/trunk/; revision=3868
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r--calendar/cal-util/cal-component.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h
index d6c84d9db0..8b32acdf2d 100644
--- a/calendar/cal-util/cal-component.h
+++ b/calendar/cal-util/cal-component.h
@@ -125,6 +125,10 @@ void cal_component_set_dtend (CalComponent *comp, CalComponentDateTime *dt);
void cal_component_get_due (CalComponent *comp, CalComponentDateTime *dt);
void cal_component_set_due (CalComponent *comp, CalComponentDateTime *dt);
+void cal_component_get_categories_list (CalComponent *comp, GSList **categ_list);
+void cal_component_set_categories_list (CalComponent *comp, GSList *categ_list);
+void cal_component_free_categories_list (GSList *categ_list);
+
END_GNOME_DECLS