aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-11-14 15:55:41 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-11-14 15:55:41 +0800
commit25fbeda5e9e6f353ff65b5c2232bdf450a700b41 (patch)
treef04e5ded304dd5aa82d0830a77f1d5a907fd4a48
parentd020bcad5cab44a6609ad3f6e4a1ad2a5e73a4e8 (diff)
downloadgsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar.gz
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar.bz2
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar.lz
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar.xz
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.tar.zst
gsoc2013-evolution-25fbeda5e9e6f353ff65b5c2232bdf450a700b41.zip
shell client objref. (mail_add_storage): " (mail_remove_storage): "
2002-11-14 Not Zed <NotZed@Ximian.com> * component-factory.c (create_view): shell client objref. (mail_add_storage): " (mail_remove_storage): " svn path=/trunk/; revision=18751
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/component-factory.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 3a0d6aba15..41ad935c2a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2002-11-14 Not Zed <NotZed@Ximian.com>
+
+ * component-factory.c (create_view): shell client objref.
+ (mail_add_storage): "
+ (mail_remove_storage): "
+
2002-11-13 Joe Shaw <joe@ximian.com>
* Makefile.am: Remove a couple backslashes that were causing
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 2efe6dc87b..15349686fa 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -149,7 +149,7 @@ create_view (EvolutionShellComponent *shell_component,
BonoboControl *control;
shell_client = evolution_shell_component_get_owner (shell_component);
- corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client));
+ corba_shell = evolution_shell_client_corba_objref(shell_client);
if (type_is_mail (folder_type)) {
const char *noselect;
@@ -1389,7 +1389,7 @@ mail_add_storage (CamelStore *store, const char *name, const char *uri)
g_return_if_fail (CAMEL_IS_STORE (store));
shell_client = evolution_shell_component_get_owner (shell_component);
- shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client));
+ shell = evolution_shell_client_corba_objref (shell_client);
camel_exception_init (&ex);
@@ -1548,7 +1548,7 @@ mail_remove_storage (CamelStore *store)
mail_note_store_remove(store);
shell_client = evolution_shell_component_get_owner (shell_component);
- corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client));
+ corba_shell = evolution_shell_client_corba_objref(shell_client);
evolution_storage_deregister_on_shell (storage, corba_shell);