diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 18:13:56 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 18:13:56 +0800 |
commit | 01bb1668503dd8e5d85aef8830dd1b04ea3e8726 (patch) | |
tree | 22e3a1d5496efb148e13b746dba98f9a462eaa6c /mail | |
parent | 9c28295de36c8c18c01c5c7846566526cee7f1ac (diff) | |
download | gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.gz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.bz2 gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.lz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.xz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.zst gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.zip |
Update the calls to `evolution_storage_new()' according to the new
API in `libeshell'.
Sorry for breaking the build. :-(
svn path=/trunk/; revision=6788
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/component-factory.c | 2 | ||||
-rw-r--r-- | mail/mail-vfolder.c | 2 |
3 files changed, 10 insertions, 2 deletions
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 <ettore@helixcode.com> + + * 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 <fejj@helixcode.com> * 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; |