diff options
Diffstat (limited to 'calendar/idl/evolution-calendar.idl')
-rw-r--r-- | calendar/idl/evolution-calendar.idl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/calendar/idl/evolution-calendar.idl b/calendar/idl/evolution-calendar.idl index 7ad011aecf..d400f13c01 100644 --- a/calendar/idl/evolution-calendar.idl +++ b/calendar/idl/evolution-calendar.idl @@ -328,18 +328,12 @@ module Calendar { exception BackendContactError {}; exception UnsupportedType {}; - typedef long CompEditorMode; - const CompEditorMode EDITOR_MODE_EVENT = 1 << 0; - const CompEditorMode EDITOR_MODE_ALLDAY_EVENT = 1 << 1; - const CompEditorMode EDITOR_MODE_MEETING = 1 << 2; - const CompEditorMode EDITOR_MODE_TODO = 1 << 3; - /* Loads a calendar and opens an editor for the specified object */ void editExisting (in string uri, in CalObjUID uid) raises (InvalidURI, BackendContactError); /* Loads a calendar and creates a new component of the specified type */ - void editNew (in string uri, in CompEditorMode mode) + void editNew (in string uri, in CalObjType type) raises (InvalidURI, BackendContactError, UnsupportedType); }; }; |