diff options
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r-- | calendar/cal-util/cal-component.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h index b8bd010b63..df24632bcf 100644 --- a/calendar/cal-util/cal-component.h +++ b/calendar/cal-util/cal-component.h @@ -79,6 +79,7 @@ typedef enum { CAL_COMPONENT_FIELD_COLOR, /* not a real field */ CAL_COMPONENT_FIELD_STATUS, CAL_COMPONENT_FIELD_COMPONENT, /* not a real field */ + CAL_COMPONENT_FIELD_LOCATION, CAL_COMPONENT_FIELD_NUM_FIELDS } CalComponentField; @@ -312,6 +313,9 @@ void cal_component_get_attendee_list (CalComponent *comp, GSList **attendee_list void cal_component_set_attendee_list (CalComponent *comp, GSList *attendee_list); gboolean cal_component_has_attendees (CalComponent *comp); +void cal_component_get_location (CalComponent *comp, const char **location); +void cal_component_set_location (CalComponent *comp, const char *location); + gboolean cal_component_event_dates_match (CalComponent *comp1, CalComponent *comp2); |