diff options
Diffstat (limited to 'calendar/idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index ef3f59e629..7f4a850ecb 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -25,6 +25,9 @@ module Calendar { /* A unique identifier for a calendar component */ typedef string CalObjUID; + /* Simple sequence of strings */ + typedef sequence<string> StringSeq; + /* Sequence of unique identifiers */ typedef sequence<CalObjUID> CalObjUIDSeq; @@ -212,6 +215,9 @@ module Calendar { /* Called from a Calendar when a component is removed */ void notifyObjRemoved (in CalObjUID uid); + + /* Called from a Calendar when the list of categories changes */ + void notifyCategoriesChanged (in StringSeq categories); }; /* Handle to a live query on a calendar */ |