diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-03-25 19:28:50 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-03-25 19:28:50 +0800 |
commit | 62c855b6318d6bff79be425375a27e98963023f7 (patch) | |
tree | fcefcd94b651e7173faaae6c6a3f99b987efb382 /mail/mail-config-factory.c | |
parent | b90194e6393dbbe805f8da1562c0765e812a827b (diff) | |
download | gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.gz gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.zst gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.zip |
Varadhan's patch for configurable proxy settings in Evolution.
M shell/apps_evolution_shell.schemas.in
M shell/ChangeLog
A mail/em-network-prefs.c
M mail/GNOME_Evolution_Mail.server.in.in
A mail/em-network-prefs.h
M mail/ChangeLog
M mail/mail-config.glade
M mail/Makefile.am
M mail/mail-component-factory.c
M mail/mail-config-factory.c
svn path=/trunk/; revision=35240
Diffstat (limited to 'mail/mail-config-factory.c')
-rw-r--r-- | mail/mail-config-factory.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/mail-config-factory.c b/mail/mail-config-factory.c index 27ed15e0d9..29a27e3efb 100644 --- a/mail/mail-config-factory.c +++ b/mail/mail-config-factory.c @@ -30,6 +30,7 @@ #include "em-account-prefs.h" #include "em-composer-prefs.h" #include "em-mailer-prefs.h" +#include "em-network-prefs.h" #include "mail-config-factory.h" @@ -48,6 +49,8 @@ mail_config_control_factory_cb (BonoboGenericFactory *factory, const char *compo prefs = em_mailer_prefs_new (); } else if (!strcmp (component_id, EM_COMPOSER_PREFS_CONTROL_ID)) { prefs = em_composer_prefs_new (); + } else if (!strcmp (component_id, EM_NETWORK_PREFS_CONTROL_ID)) { + prefs = em_network_prefs_new (); } else { g_return_val_if_reached(NULL); } |