diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 02:33:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-10-03 02:33:34 +0800 |
commit | 11c665c9250652c340c4f9636390f7cdbe1e7565 (patch) | |
tree | 3e449e23b7cde1a827a03d5c526af78c398eaeda /shell/Evolution-Shortcuts.idl | |
parent | df580510c9788caa00731e6bbd227388b91f4695 (diff) | |
download | gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.gz gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.bz2 gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.lz gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.xz gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.tar.zst gsoc2013-evolution-11c665c9250652c340c4f9636390f7cdbe1e7565.zip |
Use `bonobo_ui_component_new_default()', not `bonobo_ui_component_new()'.
* e-shell-view.c (e_shell_view_construct): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* mail-account-gui.c (launch_signature_editor): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* e-msg-composer.c (setup_ui): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
* gui/dialogs/comp-editor.c (setup_widgets): Use
`bonobo_ui_component_new_default()', not
`bonobo_ui_component_new()'.
svn path=/trunk/; revision=13306
Diffstat (limited to 'shell/Evolution-Shortcuts.idl')
-rw-r--r-- | shell/Evolution-Shortcuts.idl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/shell/Evolution-Shortcuts.idl b/shell/Evolution-Shortcuts.idl index 7ffb55a164..ffd3a9cf21 100644 --- a/shell/Evolution-Shortcuts.idl +++ b/shell/Evolution-Shortcuts.idl @@ -29,6 +29,8 @@ module Evolution { typedef sequence<Group> GroupList; exception NotFound {}; + exception InvalidPosition {}; + exception CannotRemove {}; readonly attribute GroupList groups; // FIXME: Could be non-readonly @@ -39,9 +41,10 @@ module Evolution { Shortcut get (in short group_num, in short item_num) raises (NotFound); - void addGroup (in short position, in string name); + void addGroup (in short position, in string name) + raises (InvalidPosition); void removeGroup (in short group_num) - raises (NotFound); + raises (NotFound, CannotRemove); Group getGroup (in short group_num) raises (NotFound); |