diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/Evolution-Component.idl | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b632aa6735..1a06e09f33 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2003-10-29 Dan Winship <danw@ximian.com> + + * Evolution-Component.idl: declare an exception for createControls + to return, so we don't have to just crash if it fails. + 2003-10-28 Rodney Dawes <dobey@ximian.com> * Makefile.am: Add e-shell-view.h to evolution_SOURCES diff --git a/shell/Evolution-Component.idl b/shell/Evolution-Component.idl index 52d86387db..c8159ff8fa 100644 --- a/shell/Evolution-Component.idl +++ b/shell/Evolution-Component.idl @@ -14,9 +14,12 @@ module GNOME { module Evolution { interface Component : Bonobo::Unknown { + exception Failed {}; + /* Create the controls for embedding in the shell. */ void createControls (out Bonobo::Control sidebar_control, - out Bonobo::Control view_control); + out Bonobo::Control view_control) + raises (Failed); /* Request the component to quit. The component will reply with an event named "quit", with a boolean value of TRUE if |