aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-08-22 05:53:41 +0800
committerChris Toshok <toshok@src.gnome.org>2004-08-22 05:53:41 +0800
commit0730105c0fa583e797a8c012a2ecf24e24b400cf (patch)
treed1b4bda5044e5647a76e9a8369d398afec21fc0c
parent2eef178aae27a2abf4a673b9a599ae93a0e583d0 (diff)
downloadgsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar.gz
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar.bz2
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar.lz
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar.xz
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.tar.zst
gsoc2013-evolution-0730105c0fa583e797a8c012a2ecf24e24b400cf.zip
remove the dead ldap config control stuff.
2004-08-20 Chris Toshok <toshok@ximian.com> * gui/component/component-factory.c (factory): remove the dead ldap config control stuff. svn path=/trunk/; revision=26984
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/component/component-factory.c6
2 files changed, 5 insertions, 6 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 6ea780c4e7..e7154b279c 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2004-08-20 Chris Toshok <toshok@ximian.com>
+
+ * gui/component/component-factory.c (factory): remove the dead
+ ldap config control stuff.
+
2004-08-20 Hans Petter Jansson <hpj@ximian.com>
Fixes bug #62715.
diff --git a/addressbook/gui/component/component-factory.c b/addressbook/gui/component/component-factory.c
index 5b3cd12396..b42322440a 100644
--- a/addressbook/gui/component/component-factory.c
+++ b/addressbook/gui/component/component-factory.c
@@ -43,7 +43,6 @@
#define COMPONENT_ID "OAFIID:GNOME_Evolution_Addressbook_Component:" BASE_VERSION
#define ADDRESS_POPUP_ID "OAFIID:GNOME_Evolution_Addressbook_AddressPopup:" BASE_VERSION
#define SELECT_NAMES_ID "OAFIID:GNOME_Evolution_Addressbook_SelectNames:" BASE_VERSION
-#define LDAP_STORAGE_CONFIG_CONTROL_ID "OAFIID:GNOME_Evolution_LDAPStorage_ConfigControl:" BASE_VERSION
#define COMPLETION_CONFIG_CONTROL_ID "OAFIID:GNOME_Evolution_Addressbook_Autocompletion_ConfigControl:" BASE_VERSION
#define CERTIFICATE_MANAGER_CONFIG_CONTROL_ID "OAFIID:GNOME_Evolution_SMime_CertificateManager_ConfigControl:" BASE_VERSION
@@ -66,11 +65,6 @@ factory (BonoboGenericFactory *factory,
return BONOBO_OBJECT (eab_popup_control_new ());
if (strcmp (component_id, COMPLETION_CONFIG_CONTROL_ID) == 0)
return BONOBO_OBJECT (autocompletion_config_control_new ());
-#if 0
- /* Config control is dead */
- if (strcmp (component_id, LDAP_STORAGE_CONFIG_CONTROL_ID) == 0)
- return BONOBO_OBJECT (addressbook_config_control_new ());
-#endif
if (strcmp (component_id, SELECT_NAMES_ID) == 0)
return BONOBO_OBJECT (e_select_names_bonobo_new ());
#ifdef ENABLE_SMIME