aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-13 01:53:15 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-13 01:53:15 +0800
commitb324985e978028a15d7c46a6cd297c060abd02f9 (patch)
tree36082dd7ebdcd583ba525f95a158bed15648fcbb /shell
parentcd5099b9f78a8f0067ef6b0e6487d5b809268801 (diff)
downloadgsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar.gz
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar.bz2
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar.lz
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar.xz
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.tar.zst
gsoc2013-evolution-b324985e978028a15d7c46a6cd297c060abd02f9.zip
Rename `::addFolderAsync' into `::createFolderAsync'.
svn path=/trunk/; revision=7452
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog15
-rw-r--r--shell/Evolution-ShellComponent.idl6
-rw-r--r--shell/evolution-shell-component-client.c8
-rw-r--r--shell/evolution-shell-component.c2
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;