diff options
Diffstat (limited to 'calendar/cal-util')
-rw-r--r-- | calendar/cal-util/cal-component.c | 6 | ||||
-rw-r--r-- | calendar/cal-util/cal-component.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c index 100af1d77e..5cba22a635 100644 --- a/calendar/cal-util/cal-component.c +++ b/calendar/cal-util/cal-component.c @@ -3644,6 +3644,12 @@ cal_component_get_alarm (CalComponent *comp, const char *auid) return NULL; } +void +cal_component_free_alarm_uids (GList *alarm_uids) +{ + +} + /** * cal_component_alarms_free: * @alarms: Component alarms structure. diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h index 97b518dfe2..b912c04e9e 100644 --- a/calendar/cal-util/cal-component.h +++ b/calendar/cal-util/cal-component.h @@ -332,6 +332,7 @@ void cal_component_remove_alarm (CalComponent *comp, const char *auid); GList *cal_component_get_alarm_uids (CalComponent *comp); CalComponentAlarm *cal_component_get_alarm (CalComponent *comp, const char *auid); +void cal_component_free_alarm_uids (GList *alarm_uids); void cal_component_alarms_free (CalComponentAlarms *alarms); |