diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-07-04 06:59:07 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-07-04 06:59:07 +0800 |
commit | 43f902781ba5f22478f966a2f7687baf1a2eccdd (patch) | |
tree | aa05588c4177a0d9897bd605e5adab53e4068b32 /calendar/cal-util/cal-component.h | |
parent | 6f709e4fd7d0f3b0e5065be3b593dd8ed4b94ed3 (diff) | |
download | gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar.gz gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar.bz2 gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar.lz gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar.xz gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.tar.zst gsoc2013-evolution-43f902781ba5f22478f966a2f7687baf1a2eccdd.zip |
Renamed from cal_component_free_description_list(). We can share this
2000-07-03 Federico Mena Quintero <federico@helixcode.com>
* cal-util/cal-component.c (cal_component_free_text_list): Renamed
from cal_component_free_description_list(). We can share this
function since both comments and descriptions have the same form.
(scan_text): Ditto.
(get_text_list): New function.
(set_text_list): New function.
(cal_component_get_description_list): Use get_text_list().
(cal_component_set_description_list): Use set_text_list().
(cal_component_set_uid): Add sanity check.
(cal_component_get_summary): Ditto.
(cal_component_get_description_list): Ditto.
(cal_component_get_dtstart): Ditto.
(cal_component_get_dtend): Ditto.
(cal_component_get_due): Ditto.
(scan_property): Handle the COMMENT property.
(cal_component_get_comment_list): Ditto.
(cal_component_set_comment_list): Ditto.
svn path=/trunk/; revision=3875
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r-- | calendar/cal-util/cal-component.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h index 8b32acdf2d..d2d2c2c96f 100644 --- a/calendar/cal-util/cal-component.h +++ b/calendar/cal-util/cal-component.h @@ -67,7 +67,7 @@ typedef struct { /* Alternate representation URI */ const char *altrep; -} CalComponentDescription; +} CalComponentText; typedef struct { /* Actual date/time value */ @@ -107,12 +107,17 @@ CalComponentVType cal_component_get_vtype (CalComponent *comp); const char *cal_component_get_uid (CalComponent *comp); void cal_component_set_uid (CalComponent *comp, const char *uid); -void cal_component_get_summary (CalComponent *comp, CalComponentPropSummary *summary); -void cal_component_set_summary (CalComponent *comp, const CalComponentPropSummary *summary); +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); + +void cal_component_free_text_list (GSList *text_list); -void cal_component_get_description_list (CalComponent *comp, GSList **desc_list); -void cal_component_set_description_list (CalComponent *comp, GSList *desc_list); -void cal_component_free_description_list (GSList *desc_list); +void cal_component_get_comment_list (CalComponent *comp, GSList **text_list); +void cal_component_set_comment_list (CalComponent *comp, GSList *text_list); + +void cal_component_get_description_list (CalComponent *comp, GSList **text_list); +void cal_component_set_description_list (CalComponent *comp, GSList *text_list); void cal_component_free_datetime (CalComponentDateTime *dt); @@ -125,9 +130,8 @@ 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); +void cal_component_get_summary (CalComponent *comp, CalComponentPropSummary *summary); +void cal_component_set_summary (CalComponent *comp, const CalComponentPropSummary *summary); |