Rename ::addFolderAsync' into
::createFolderAsync'.
svn path=/trunk/; revision=7452
This commit is contained in:
@ -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>
|
2001-01-12 Dan Winship <danw@ximian.com>
|
||||||
|
|
||||||
* importer/.cvsignore: Create
|
* importer/.cvsignore: Create
|
||||||
@ -7,7 +19,6 @@
|
|||||||
* e-storage-set-view.c: Added translation strings.
|
* 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"
|
(command_new_mail_message): Remove "window"
|
||||||
from the moniker path.
|
from the moniker path.
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ module Evolution {
|
|||||||
|
|
||||||
exception Busy {};
|
exception Busy {};
|
||||||
|
|
||||||
void addFolderAsync (in ShellComponentListener listener,
|
void createFolderAsync (in ShellComponentListener listener,
|
||||||
in string physical_uri,
|
in string physical_uri,
|
||||||
in string type)
|
in string type)
|
||||||
raises (Busy);
|
raises (Busy);
|
||||||
|
@ -483,7 +483,7 @@ evolution_shell_component_client_async_create_folder (EvolutionShellComponentCli
|
|||||||
priv->callback = callback;
|
priv->callback = callback;
|
||||||
priv->callback_data = data;
|
priv->callback_data = data;
|
||||||
|
|
||||||
GNOME_Evolution_ShellComponent_addFolderAsync (corba_shell_component,
|
GNOME_Evolution_ShellComponent_createFolderAsync (corba_shell_component,
|
||||||
priv->listener_interface,
|
priv->listener_interface,
|
||||||
physical_uri, type,
|
physical_uri, type,
|
||||||
&ev);
|
&ev);
|
||||||
|
@ -352,7 +352,7 @@ corba_class_init (void)
|
|||||||
epv->setOwner = impl_ShellComponent_set_owner;
|
epv->setOwner = impl_ShellComponent_set_owner;
|
||||||
epv->unsetOwner = impl_ShellComponent_unset_owner;
|
epv->unsetOwner = impl_ShellComponent_unset_owner;
|
||||||
epv->createView = impl_ShellComponent_create_view;
|
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->removeFolderAsync = impl_ShellComponent_async_remove_folder;
|
||||||
epv->populateFolderContextMenu = impl_ShellComponent_populate_folder_context_menu;
|
epv->populateFolderContextMenu = impl_ShellComponent_populate_folder_context_menu;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user