diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 15 | ||||
-rw-r--r-- | shell/Evolution-ShellComponent.idl | 6 | ||||
-rw-r--r-- | shell/evolution-shell-component-client.c | 8 | ||||
-rw-r--r-- | shell/evolution-shell-component.c | 2 |
4 files changed, 21 insertions, 10 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 05cc24d49c..4e80eaed65 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,15 @@ +2001-01-12 Ettore Perazzoli <ettore@helixcode.com> + + * evolution-shell-component.c (corba_class_init): + s/addFolderAsync/createFolderAsync/. + + * evolution-shell-component-client.c + (evolution_shell_component_client_async_create_folder): + s/addFolderAsync/createFolderAsync/. + + * Evolution-ShellComponent.idl: Rename `addFolder' into + `createFolder'. + 2001-01-12 Dan Winship <danw@ximian.com> * importer/.cvsignore: Create @@ -6,8 +18,7 @@ * e-storage-set-view.c: Added translation strings. - * e-shell-view-menu.c (command_about_box): Update our name - + * e-shell-view-menu.c (command_about_box): Update our name (command_new_mail_message): Remove "window" from the moniker path. diff --git a/shell/Evolution-ShellComponent.idl b/shell/Evolution-ShellComponent.idl index 592245481e..bd98e5ed46 100644 --- a/shell/Evolution-ShellComponent.idl +++ b/shell/Evolution-ShellComponent.idl @@ -48,9 +48,9 @@ module Evolution { exception Busy {}; - void addFolderAsync (in ShellComponentListener listener, - in string physical_uri, - in string type) + void createFolderAsync (in ShellComponentListener listener, + in string physical_uri, + in string type) raises (Busy); void removeFolderAsync (in ShellComponentListener listener, diff --git a/shell/evolution-shell-component-client.c b/shell/evolution-shell-component-client.c index 218379fd03..40b3b29311 100644 --- a/shell/evolution-shell-component-client.c +++ b/shell/evolution-shell-component-client.c @@ -483,10 +483,10 @@ evolution_shell_component_client_async_create_folder (EvolutionShellComponentCli priv->callback = callback; priv->callback_data = data; - GNOME_Evolution_ShellComponent_addFolderAsync (corba_shell_component, - priv->listener_interface, - physical_uri, type, - &ev); + GNOME_Evolution_ShellComponent_createFolderAsync (corba_shell_component, + priv->listener_interface, + physical_uri, type, + &ev); CORBA_exception_free (&ev); } diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index 2febfc39b6..89b4eb0b0f 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -352,7 +352,7 @@ corba_class_init (void) epv->setOwner = impl_ShellComponent_set_owner; epv->unsetOwner = impl_ShellComponent_unset_owner; epv->createView = impl_ShellComponent_create_view; - epv->addFolderAsync = impl_ShellComponent_async_create_folder; + epv->createFolderAsync = impl_ShellComponent_async_create_folder; epv->removeFolderAsync = impl_ShellComponent_async_remove_folder; epv->populateFolderContextMenu = impl_ShellComponent_populate_folder_context_menu; |