aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-06-28 07:37:01 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-06-28 07:37:01 +0800
commit411d79d4882a877a536bdd387939e3347080fdd5 (patch)
treee5803f36fd235bde0f35c99d265d95fbf34a0b43 /shell
parentd82d5a79971d0c9deeb7f34f5ce509e6ed56ea40 (diff)
downloadgsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar.gz
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar.bz2
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar.lz
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar.xz
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.tar.zst
gsoc2013-evolution-411d79d4882a877a536bdd387939e3347080fdd5.zip
Rename the method implementation functions to match the CORBA names.
svn path=/trunk/; revision=10549
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog17
-rw-r--r--shell/evolution-shell-component.c82
2 files changed, 58 insertions, 41 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 501036b244..262090fd6f 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,22 @@
2001-06-27 Ettore Perazzoli <ettore@ximian.com>
+ * evolution-shell-component.c (impl_setOwner): Renamed from
+ `impl_ShellComponent_set_owner'.
+ (impl_unsetOwner): Renamed from `impl_ShellComponent_unset_owner'.
+ (impl_debug): Renamed from `impl_ShellComponent_debug'.
+ (impl_createView): Renamed from `impl_ShellComponent_create_view'.
+ (impl_createFolderAsync): Renamed from
+ `impl_ShellComponent_async_create_folder'.
+ (impl_removeFolderAsync): Renamed from
+ `impl_ShellComponent_async_remove_folder'.
+ (impl_xferFolderAsync): Renamed from
+ `impl_ShellComponent_async_xfer_folder'.
+ (impl_populateFolderContextMenu): Renamed from
+ `impl_ShellComponent_populate_folder_context_menu'.
+ (class_init): Updated accordingly.
+
+2001-06-27 Ettore Perazzoli <ettore@ximian.com>
+
* evolution-test-component.c (factory_fn): Pass NULL as the
@external_uri_schemas arg to `evolution_shell_component_new'.
diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c
index 9432797dac..1257c493e0 100644
--- a/shell/evolution-shell-component.c
+++ b/shell/evolution-shell-component.c
@@ -209,10 +209,10 @@ impl_ShellComponent__get_external_uri_schemas (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_set_owner (PortableServer_Servant servant,
- const GNOME_Evolution_Shell shell,
- const CORBA_char *evolution_homedir,
- CORBA_Environment *ev)
+impl_setOwner (PortableServer_Servant servant,
+ const GNOME_Evolution_Shell shell,
+ const CORBA_char *evolution_homedir,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -238,8 +238,8 @@ impl_ShellComponent_set_owner (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_unset_owner (PortableServer_Servant servant,
- CORBA_Environment *ev)
+impl_unsetOwner (PortableServer_Servant servant,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -262,9 +262,9 @@ impl_ShellComponent_unset_owner (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_debug (PortableServer_Servant servant,
- const CORBA_char *log_path,
- CORBA_Environment *ev)
+impl_debug (PortableServer_Servant servant,
+ const CORBA_char *log_path,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -285,10 +285,10 @@ impl_ShellComponent_debug (PortableServer_Servant servant,
}
static Bonobo_Control
-impl_ShellComponent_create_view (PortableServer_Servant servant,
- const CORBA_char *physical_uri,
- const CORBA_char *type,
- CORBA_Environment *ev)
+impl_createView (PortableServer_Servant servant,
+ const CORBA_char *physical_uri,
+ const CORBA_char *type,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -328,11 +328,11 @@ impl_ShellComponent_create_view (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_async_create_folder (PortableServer_Servant servant,
- const GNOME_Evolution_ShellComponentListener listener,
- const CORBA_char *physical_uri,
- const CORBA_char *type,
- CORBA_Environment *ev)
+impl_createFolderAsync (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentListener listener,
+ const CORBA_char *physical_uri,
+ const CORBA_char *type,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -353,10 +353,10 @@ impl_ShellComponent_async_create_folder (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_async_remove_folder (PortableServer_Servant servant,
- const GNOME_Evolution_ShellComponentListener listener,
- const CORBA_char *physical_uri,
- CORBA_Environment *ev)
+impl_removeFolderAsync (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentListener listener,
+ const CORBA_char *physical_uri,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -377,12 +377,12 @@ impl_ShellComponent_async_remove_folder (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_async_xfer_folder (PortableServer_Servant servant,
- const GNOME_Evolution_ShellComponentListener listener,
- const CORBA_char *source_physical_uri,
- const CORBA_char *destination_physical_uri,
- const CORBA_boolean remove_source,
- CORBA_Environment *ev)
+impl_xferFolderAsync (PortableServer_Servant servant,
+ const GNOME_Evolution_ShellComponentListener listener,
+ const CORBA_char *source_physical_uri,
+ const CORBA_char *destination_physical_uri,
+ const CORBA_boolean remove_source,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -408,11 +408,11 @@ impl_ShellComponent_async_xfer_folder (PortableServer_Servant servant,
}
static void
-impl_ShellComponent_populate_folder_context_menu (PortableServer_Servant servant,
- const Bonobo_UIContainer corba_uih,
- const CORBA_char *physical_uri,
- const CORBA_char *type,
- CORBA_Environment *ev)
+impl_populateFolderContextMenu (PortableServer_Servant servant,
+ const Bonobo_UIContainer corba_uih,
+ const CORBA_char *physical_uri,
+ const CORBA_char *type,
+ CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
EvolutionShellComponent *shell_component;
@@ -530,14 +530,14 @@ class_init (EvolutionShellComponentClass *klass)
epv->_get_supported_types = impl_ShellComponent__get_supported_types;
epv->_get_external_uri_schemas = impl_ShellComponent__get_external_uri_schemas;
- epv->setOwner = impl_ShellComponent_set_owner;
- epv->unsetOwner = impl_ShellComponent_unset_owner;
- epv->debug = impl_ShellComponent_debug;
- epv->createView = impl_ShellComponent_create_view;
- epv->createFolderAsync = impl_ShellComponent_async_create_folder;
- epv->removeFolderAsync = impl_ShellComponent_async_remove_folder;
- epv->xferFolderAsync = impl_ShellComponent_async_xfer_folder;
- epv->populateFolderContextMenu = impl_ShellComponent_populate_folder_context_menu;
+ epv->setOwner = impl_setOwner;
+ epv->unsetOwner = impl_unsetOwner;
+ epv->debug = impl_debug;
+ epv->createView = impl_createView;
+ epv->createFolderAsync = impl_createFolderAsync;
+ epv->removeFolderAsync = impl_removeFolderAsync;
+ epv->xferFolderAsync = impl_xferFolderAsync;
+ epv->populateFolderContextMenu = impl_populateFolderContextMenu;
}
static void