From 01bb1668503dd8e5d85aef8830dd1b04ea3e8726 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 5 Dec 2000 10:13:56 +0000 Subject: Update the calls to `evolution_storage_new()' according to the new API in `libeshell'. Sorry for breaking the build. :-( svn path=/trunk/; revision=6788 --- mail/ChangeLog | 8 ++++++++ mail/component-factory.c | 2 +- mail/mail-vfolder.c | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 3f17c52faf..df1cab5af2 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2000-12-05 Ettore Perazzoli + + * mail-vfolder.c (vfolder_create_storage): Updated the call to + `evolution_storage_new()': pass NULL for @toplevel_node_uri. + + * component-factory.c (add_storage): Updated the call to + `evolution_storage_new()': pass NULL for @toplevel_node_uri. + 2000-12-04 Jeffrey Stedfast * subscribe-dialog.c (setup_subscribe_folder): Use info->full_name diff --git a/mail/component-factory.c b/mail/component-factory.c index a5915e3cf2..1b781aa7bc 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -263,7 +263,7 @@ add_storage (const char *uri, CamelService *store, char *name; name = camel_service_get_name (store, TRUE); - storage = evolution_storage_new (name); + storage = evolution_storage_new (name, NULL); g_free (name); res = evolution_storage_register_on_shell (storage, corba_shell); diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index a9ad3ff561..b80d558fae 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -144,7 +144,7 @@ vfolder_create_storage(EvolutionShellComponent *shell_component) corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client)); - storage = evolution_storage_new (_("VFolders")); + storage = evolution_storage_new (_("VFolders"), NULL); if (evolution_storage_register_on_shell (storage, corba_shell) != EVOLUTION_STORAGE_OK) { g_warning ("Cannot register storage"); return; -- cgit v1.2.3