diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-26 12:23:41 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-26 12:23:41 +0800 |
commit | ca6276f9e5e5813b6954e2869667458c3b1d9f10 (patch) | |
tree | db61be26e191a7befd9909aa0f8af446b442e0fa /shell/importer | |
parent | 1689385939c40e1a88aa9733e3234950f75ec0ba (diff) | |
download | gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar.gz gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar.bz2 gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar.lz gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar.xz gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.tar.zst gsoc2013-evolution-ca6276f9e5e5813b6954e2869667458c3b1d9f10.zip |
set exception if not implemented.
2004-05-26 Not Zed <NotZed@Ximian.com>
* importer/evolution-importer.c
(impl_GNOME_Evolution_Importer_createControl): set exception if not
implemented.
* e-shell-importer.c (importer_file_page_new): set the entry to
activate default, and fixed the _Filename and _Forward shortcut
clash. #58081.
(prepare_dest_page): pack the widget without expand/fill.
svn path=/trunk/; revision=26088
Diffstat (limited to 'shell/importer')
-rw-r--r-- | shell/importer/evolution-importer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/importer/evolution-importer.c b/shell/importer/evolution-importer.c index 430e1b2da8..03ff54fea6 100644 --- a/shell/importer/evolution-importer.c +++ b/shell/importer/evolution-importer.c @@ -64,6 +64,8 @@ impl_GNOME_Evolution_Importer_createControl (PortableServer_Servant servant, if (priv->create_control_fn != NULL) (priv->create_control_fn) (importer, control, priv->closure); + else + CORBA_exception_set_system (ev, ex_CORBA_NO_IMPLEMENT, CORBA_COMPLETED_NO); } static CORBA_boolean |