aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component-factory.c
diff options
context:
space:
mode:
authorSuman Manjunath <msuman@src.gnome.org>2008-03-25 19:28:50 +0800
committerSuman Manjunath <msuman@src.gnome.org>2008-03-25 19:28:50 +0800
commit62c855b6318d6bff79be425375a27e98963023f7 (patch)
treefcefcd94b651e7173faaae6c6a3f99b987efb382 /mail/mail-component-factory.c
parentb90194e6393dbbe805f8da1562c0765e812a827b (diff)
downloadgsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar
gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.gz
gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.bz2
gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.lz
gsoc2013-evolution-62c855b6318d6bff79be425375a27e98963023f7.tar.xz
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-component-factory.c')
-rw-r--r--mail/mail-component-factory.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-component-factory.c b/mail/mail-component-factory.c
index 31373e56da..2abf71a323 100644
--- a/mail/mail-component-factory.c
+++ b/mail/mail-component-factory.c
@@ -30,6 +30,7 @@
#include "em-account-prefs.h"
#include "em-mailer-prefs.h"
#include "em-composer-prefs.h"
+#include "em-network-prefs.h"
#include "mail-config-factory.h"
#include "mail-config.h"
@@ -70,7 +71,8 @@ factory(BonoboGenericFactory *factory, const char *component_id, void *closure)
return BONOBO_OBJECT (component);
} else if (strcmp (component_id, EM_ACCOUNT_PREFS_CONTROL_ID) == 0
|| strcmp (component_id, EM_MAILER_PREFS_CONTROL_ID) == 0
- || strcmp (component_id, EM_COMPOSER_PREFS_CONTROL_ID) == 0) {
+ || strcmp (component_id, EM_COMPOSER_PREFS_CONTROL_ID) == 0
+ || strcmp (component_id, EM_NETWORK_PREFS_CONTROL_ID) == 0) {
return mail_config_control_factory_cb (factory, component_id, CORBA_OBJECT_NIL);
} else if (strcmp(component_id, COMPOSER_ID) == 0) {
/* FIXME: how to remove need for callbacks, probably make the composer more tightly integrated with mail */