diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-11-13 19:56:29 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-11-13 19:56:29 +0800 |
commit | 63c51cf72482c6d472fdf24b0f50392ca96fe32b (patch) | |
tree | 494fd66837cf92214ce56720e722133b06bd560f /shell/Evolution-Component.idl | |
parent | 51baaabff65c3c27e0e74f5840ed2edd80d2423f (diff) | |
download | gsoc2013-evolution-63c51cf72482c6d472fdf24b0f50392ca96fe32b.tar.gz gsoc2013-evolution-63c51cf72482c6d472fdf24b0f50392ca96fe32b.tar.zst gsoc2013-evolution-63c51cf72482c6d472fdf24b0f50392ca96fe32b.zip |
(GNOME.Evolution.Component.UnknownType):
New exception.
svn path=/trunk/; revision=23323
Diffstat (limited to 'shell/Evolution-Component.idl')
-rw-r--r-- | shell/Evolution-Component.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/Evolution-Component.idl b/shell/Evolution-Component.idl index 8c225ee357..7a915c6bfb 100644 --- a/shell/Evolution-Component.idl +++ b/shell/Evolution-Component.idl @@ -27,6 +27,7 @@ module Evolution { interface Component : Bonobo::Unknown { exception Failed {}; + exception UnknownType {}; /* Create the controls for embedding in the shell. */ void createControls (out Bonobo::Control sidebar_control, @@ -56,7 +57,8 @@ module Evolution { /* Pop up a new editing dialog for the item with the specified @item_type_name. */ - void requestCreateItem (in string item_type_name); + void requestCreateItem (in string item_type_name) + raises (UnknownType); }; }; |