diff options
author | Peter Williams <peterw@ximian.com> | 2001-08-30 03:07:34 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-08-30 03:07:34 +0800 |
commit | fd6740b4a8a27ea0a666c9e19ac600645935af44 (patch) | |
tree | 8ad5254cf82c9cc7aed5095630c2573123d4a974 | |
parent | 90cf0bf5b508d5e5669c66a333ce69e8745d2cfe (diff) | |
download | gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar.gz gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar.bz2 gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar.lz gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar.xz gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.tar.zst gsoc2013-evolution-fd6740b4a8a27ea0a666c9e19ac600645935af44.zip |
Toss in a call to mail_config_init () cause it might contribute to solving
2001-08-29 Peter Williams <peterw@ximian.com>
* component-factory.c (owner_set_cb): Toss in a call to
mail_config_init () cause it might contribute to solving
bug 4911, and it won't hurt.
svn path=/trunk/; revision=12514
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/component-factory.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c336296d2e..2918dc12f7 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-08-29 Peter Williams <peterw@ximian.com> + + * component-factory.c (owner_set_cb): Toss in a call to + mail_config_init () cause it might contribute to solving + bug 4911, and it won't hurt. + 2001-08-28 Peter Williams <peterw@ximian.com> * component-factory.c (owner_unset_cb): Disable interaction once diff --git a/mail/component-factory.c b/mail/component-factory.c index f0ede8f01c..d828757ee3 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -633,7 +633,8 @@ owner_set_cb (EvolutionShellComponent *shell_component, evolution_dir = g_strdup (evolution_homedir); mail_session_init (); - + mail_config_init (); + storages_hash = g_hash_table_new (NULL, NULL); vfolder_create_storage (shell_component); |