Rename ::addFolderAsync' into ::createFolderAsync'.

svn path=/trunk/; revision=7452
This commit is contained in:
Ettore Perazzoli
2001-01-12 17:53:15 +00:00
parent cd5099b9f7
commit b324985e97
4 changed files with 21 additions and 10 deletions

View File

@ -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
@ -7,7 +19,6 @@
* e-storage-set-view.c: Added translation strings.
* e-shell-view-menu.c (command_about_box): Update our name
(command_new_mail_message): Remove "window"
from the moniker path.

View File

@ -48,7 +48,7 @@ module Evolution {
exception Busy {};
void addFolderAsync (in ShellComponentListener listener,
void createFolderAsync (in ShellComponentListener listener,
in string physical_uri,
in string type)
raises (Busy);

View File

@ -483,7 +483,7 @@ evolution_shell_component_client_async_create_folder (EvolutionShellComponentCli
priv->callback = callback;
priv->callback_data = data;
GNOME_Evolution_ShellComponent_addFolderAsync (corba_shell_component,
GNOME_Evolution_ShellComponent_createFolderAsync (corba_shell_component,
priv->listener_interface,
physical_uri, type,
&ev);

View File

@ -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;