diff options
author | JP Rosevear <jpr@ximian.com> | 2001-08-18 02:35:11 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-08-18 02:35:11 +0800 |
commit | 10291068a6526aefd6541399580b9bb5c819d838 (patch) | |
tree | e611b2ce8ea9392c0c2b35a5bb256985b1138361 | |
parent | 88a9573572927f7d4a515ff130997bb9bdb16cfc (diff) | |
download | gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar.gz gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar.bz2 gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar.lz gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar.xz gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.tar.zst gsoc2013-evolution-10291068a6526aefd6541399580b9bb5c819d838.zip |
don't init the config here
2001-08-17 JP Rosevear <jpr@ximian.com>
* component-factory.c (owner_set_cb): don't init the config here
* main.c (main): init the config here
svn path=/trunk/; revision=12166
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/component-factory.c | 2 | ||||
-rw-r--r-- | mail/main.c | 1 |
3 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 3d66b5770d..206a45d89b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,11 @@ 2001-08-17 JP Rosevear <jpr@ximian.com> + * component-factory.c (owner_set_cb): don't init the config here + + * main.c (main): init the config here + +2001-08-17 JP Rosevear <jpr@ximian.com> + * mail-config-druid.c: remove dead structure 2001-08-17 Jeffrey Stedfast <fejj@ximian.com> diff --git a/mail/component-factory.c b/mail/component-factory.c index bfd9a8a304..3370d2277d 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -609,8 +609,6 @@ 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); diff --git a/mail/main.c b/mail/main.c index 35cd26faca..41a9482167 100644 --- a/mail/main.c +++ b/mail/main.c @@ -125,6 +125,7 @@ main (int argc, char *argv []) e_cursors_init (); + mail_config_init (); mail_msg_init (); component_factory_init (); |