aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-06 10:40:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-06 10:40:51 +0800
commit7c4ce285d03821cbb13cadd74ae491abed3c3bdf (patch)
tree0e65da4165b32e482721d4cee1d66da6999cd9ca /addressbook/gui/component
parent73e2332d84518da99cb9c118553db26d6db3f21a (diff)
downloadgsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar.gz
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar.bz2
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar.lz
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar.xz
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.tar.zst
gsoc2013-evolution-7c4ce285d03821cbb13cadd74ae491abed3c3bdf.zip
Convert the vCard Bonobo control to an EMFormatHook plugin.
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/component-factory.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/addressbook/gui/component/component-factory.c b/addressbook/gui/component/component-factory.c
index feea79d88f..52bc377115 100644
--- a/addressbook/gui/component/component-factory.c
+++ b/addressbook/gui/component/component-factory.c
@@ -31,7 +31,6 @@
#include "addressbook-view.h"
#include "autocompletion-config.h"
#include "eab-popup-control.h"
-#include "eab-vcard-control.h"
#ifdef ENABLE_SMIME
#include "smime/gui/certificate-manager.h"
#endif
@@ -40,7 +39,6 @@
#define FACTORY_ID "OAFIID:GNOME_Evolution_Addressbook_Factory:" BASE_VERSION
-#define VCARD_CONTROL_ID "OAFIID:GNOME_Evolution_Addressbook_VCard_Control:" BASE_VERSION
#define COMPONENT_ID "OAFIID:GNOME_Evolution_Addressbook_Component:" BASE_VERSION
#define ADDRESS_POPUP_ID "OAFIID:GNOME_Evolution_Addressbook_AddressPopup:" BASE_VERSION
#define COMPLETION_CONFIG_CONTROL_ID "OAFIID:GNOME_Evolution_Addressbook_Autocompletion_ConfigControl:" BASE_VERSION
@@ -56,8 +54,6 @@ factory (BonoboGenericFactory *factory,
{
d(printf ("asked to activate component_id `%s'\n", component_id));
- if (strcmp (component_id, VCARD_CONTROL_ID) == 0)
- return BONOBO_OBJECT (eab_vcard_control_new ());
if (strcmp (component_id, COMPONENT_ID) == 0) {
BonoboObject *object = BONOBO_OBJECT (addressbook_component_peek ());
bonobo_object_ref (object);