diff options
Diffstat (limited to 'calendar/idl/evolution-calendar.idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index b08b8fd07f..29d0a79780 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -92,11 +92,18 @@ module Calendar { raises (InvalidRange); /* Gets the objects whose alarms trigger in the specified time - * range. + * range. */ CalAlarmInstanceSeq get_alarms_in_range (in Time_t start, in Time_t end) raises (InvalidRange); + /* Gets the alarms for the specified object that trigger in the + * specified time range. + */ + CalAlarmInstanceSeq get_alarms_for_object (in CalObjUID uid, + in Time_t start, in Time_t end) + raises (NotFound, InvalidRange); + /* Updates an object by adding it if it does not exist or by * changing an existing one. */ |