diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell.c | 4 | ||||
-rw-r--r-- | shell/evolution-storage.c | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 2fc012e223..312b1356f2 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2000-11-11 Matt Bissiri <bissiri@eecs.umich.edu> + + * e-shell.c: (setup_components), (save_settings_for_component): + * evolution-storage.c: (evolution_storage_register_on_shell): + Update the remaining "IDL:Evolution*" to "IDL:GNOME/Evolution*" + to sync up with yesterday's IDL re-scoping. + 2000-11-06 Michael Meeks <michael@helixcode.com> * e-shell-view.c (unrealize): remove. diff --git a/shell/e-shell.c b/shell/e-shell.c index f9b42ba8e5..faad9979f1 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -387,7 +387,7 @@ setup_components (EShell *shell, priv = shell->priv; priv->component_registry = e_component_registry_new (shell); - info_list = oaf_query ("repo_ids.has ('IDL:Evolution/ShellComponent:1.0')", NULL, &ev); + info_list = oaf_query ("repo_ids.has ('IDL:GNOME/Evolution/ShellComponent:1.0')", NULL, &ev); if (ev._major != CORBA_NO_EXCEPTION) g_error ("Eeek! Cannot perform OAF query for Evolution components."); @@ -913,7 +913,7 @@ save_settings_for_component (EShell *shell, CORBA_exception_init (&ev); - session_interface = Bonobo_Unknown_queryInterface (unknown_interface, "IDL:Evolution/Session:1.0", &ev); + session_interface = Bonobo_Unknown_queryInterface (unknown_interface, "IDL:GNOME/Evolution/Session:1.0", &ev); if (ev._major != CORBA_NO_EXCEPTION || CORBA_Object_is_nil (session_interface, &ev)) { CORBA_exception_free (&ev); return TRUE; diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c index 6f67a71471..49b7b36805 100644 --- a/shell/evolution-storage.c +++ b/shell/evolution-storage.c @@ -460,7 +460,7 @@ evolution_storage_register_on_shell (EvolutionStorage *evolution_storage, CORBA_exception_init (&ev); corba_storage_registry = Bonobo_Unknown_queryInterface (corba_shell, - "IDL:Evolution/StorageRegistry:1.0", + "IDL:GNOME/Evolution/StorageRegistry:1.0", &ev); if (corba_storage_registry == CORBA_OBJECT_NIL || ev._major != CORBA_NO_EXCEPTION) { CORBA_exception_free (&ev); |