diff options
Diffstat (limited to 'shell/Evolution-Shell.idl')
-rw-r--r-- | shell/Evolution-Shell.idl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl index dd3f44838c..5f2690afe4 100644 --- a/shell/Evolution-Shell.idl +++ b/shell/Evolution-Shell.idl @@ -13,21 +13,21 @@ module GNOME { module Evolution { interface Shell : Bonobo::Unknown { - exception NotReady {}; + exception Busy {}; + exception ComponentNotFound {}; + exception InternalError {}; + exception InvalidURI {}; exception NotFound {}; + exception NotReady {}; exception UnsupportedSchema {}; - exception InvalidURI {}; - exception InternalError {}; - exception Busy {}; /** - * createNewView: - * @uri: URI for the view to open + * createNewWindow: + * @component_id: id or alias of the component to display in the new window. * - * Return value: the new view. */ - ShellView createNewView (in string uri) - raises (NotReady, NotFound, UnsupportedSchema, InvalidURI, InternalError); + void createNewWindow (in string component_id) + raises (NotReady, ComponentNotFound, UnsupportedSchema, InternalError); /** * handleURI: |