diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-08-17 12:29:11 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-08-17 12:29:11 +0800 |
commit | 4e60b7d947fc081958acc7b4e17dfdf4e62ec08b (patch) | |
tree | 08b84d5b30af9b675acec8c133acf72ec57e14ef /mail/component-factory.c | |
parent | dad6d45018fb264dbb94031775b6c4589951e50a (diff) | |
download | gsoc2013-evolution-4e60b7d947fc081958acc7b4e17dfdf4e62ec08b.tar.gz gsoc2013-evolution-4e60b7d947fc081958acc7b4e17dfdf4e62ec08b.tar.zst gsoc2013-evolution-4e60b7d947fc081958acc7b4e17dfdf4e62ec08b.zip |
Startup assistant stuff
svn path=/trunk/; revision=12145
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 73147a1dab..bfd9a8a304 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -32,6 +32,7 @@ #include "Evolution.h" #include "evolution-storage.h" +#include "evolution-wizard.h" #include "folder-browser-factory.h" #include "evolution-shell-component.h" @@ -735,6 +736,8 @@ component_fn (BonoboGenericFactory *factory, void *closure) bonobo_object_add_interface (BONOBO_OBJECT (shell_component), BONOBO_OBJECT (destination_interface)); + evolution_mail_config_wizard_init (); + evolution_shell_component_add_user_creatable_item (shell_component, "message", _("New Mail Message"), _("New _Mail Message"), 'm'); gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set", @@ -1002,7 +1005,7 @@ mail_load_storages (GNOME_Evolution_Shell shell, const GSList *sources, gboolean name = NULL; } - if (service->url == NULL || service->url[0] == '\0' || !service->enabled) + if (service == NULL || service->url == NULL || service->url[0] == '\0' || !service->enabled) continue; mail_load_storage_by_uri (shell, service->url, name); |