diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-07-07 10:38:52 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-07-07 10:38:52 +0800 |
commit | 3b62a242bf8ff7e5542bedc42112587840f780e4 (patch) | |
tree | bc3fc9f30593480e3972b8b7c96d2a18984dda68 /calendar/cal-util/cal-component.h | |
parent | 540bde0aff7cc2b29f90a29e974e09fd400ae7ba (diff) | |
download | gsoc2013-evolution-3b62a242bf8ff7e5542bedc42112587840f780e4.tar.gz gsoc2013-evolution-3b62a242bf8ff7e5542bedc42112587840f780e4.tar.zst gsoc2013-evolution-3b62a242bf8ff7e5542bedc42112587840f780e4.zip |
Handle the LAST-MODIFIED property. (free_icalcomponent): Ditto.
2000-07-06 Federico Mena Quintero <federico@helixcode.com>
* cal-util/cal-component.c (scan_property): Handle the
LAST-MODIFIED property.
(free_icalcomponent): Ditto.
(cal_component_get_last_modified): Ditto.
(cal_component_set_last_modified): Ditto.
(get_icaltimetype): New function to get struct icaltimetype
values.
(cal_component_get_created): Use get_icaltimetype().
(set_icaltimetype): New function to set struct icaltimetype
values.
(cal_component_set_created): Use set_icaltimetype().
svn path=/trunk/; revision=3936
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r-- | calendar/cal-util/cal-component.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h index 5a66b42619..b9cc9da942 100644 --- a/calendar/cal-util/cal-component.h +++ b/calendar/cal-util/cal-component.h @@ -141,6 +141,9 @@ void cal_component_set_dtstart (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_last_modified (CalComponent *comp, struct icaltimetype **t); +void cal_component_set_last_modified (CalComponent *comp, struct icaltimetype *t); + void cal_component_get_summary (CalComponent *comp, CalComponentText *summary); void cal_component_set_summary (CalComponent *comp, CalComponentText *summary); |