diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 02:41:59 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 02:41:59 +0800 |
commit | 468e4623f182273684ff73229df3a4e4d26250d0 (patch) | |
tree | a4ea7005fbfbf9c8cbbd30984f96f3b6718f6f73 /mail/component-factory.c | |
parent | 5d8fc2a05b9fcfd53ee3590e4fac6e373019ef51 (diff) | |
download | gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar.gz gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar.bz2 gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar.lz gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar.xz gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.tar.zst gsoc2013-evolution-468e4623f182273684ff73229df3a4e4d26250d0.zip |
Added a simple LocalStorage manager module so that we can hook up
folder read/unread message count information into it.
svn path=/trunk/; revision=5337
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index c874cdeec9..00879c93ce 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -111,6 +111,7 @@ owner_set_cb (EvolutionShellComponent *shell_component, { GSList *sources; Evolution_Shell corba_shell; + Evolution_LocalStorage corba_local_storage; g_print ("evolution-mail: Yeeeh! We have an owner!\n"); /* FIXME */ @@ -132,6 +133,8 @@ owner_set_cb (EvolutionShellComponent *shell_component, mail_load_storages (corba_shell, sources); sources = mail_config_get_news (); mail_load_storages (corba_shell, sources); + + mail_local_storage_startup (shell_client); } static void |