aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/component-factory.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2004-05-12 03:28:36 +0800
committerDan Winship <danw@src.gnome.org>2004-05-12 03:28:36 +0800
commit7f8c30cebcdfd7f63674be90cab467bd6a7495d7 (patch)
tree22c5d0273b437e54d652d59bb6f90fb1f15ba868 /addressbook/gui/component/component-factory.c
parent580bd2fee1afd6c4528cae55249aa2eb72e9cdba (diff)
downloadgsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar.gz
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar.bz2
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar.lz
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar.xz
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.tar.zst
gsoc2013-evolution-7f8c30cebcdfd7f63674be90cab467bd6a7495d7.zip
Remove the addressbook control
* gui/component/GNOME_Evolution_Addressbook.server.in.in: Remove the addressbook control * gui/component/component-factory.c (factory): Remove support for the addressbook control * gui/component/addressbook-view.c: Remove all the property-bag stuff. svn path=/trunk/; revision=25856
Diffstat (limited to 'addressbook/gui/component/component-factory.c')
-rw-r--r--addressbook/gui/component/component-factory.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/addressbook/gui/component/component-factory.c b/addressbook/gui/component/component-factory.c
index dff4164955..5b3cd12396 100644
--- a/addressbook/gui/component/component-factory.c
+++ b/addressbook/gui/component/component-factory.c
@@ -40,7 +40,6 @@
#define FACTORY_ID "OAFIID:GNOME_Evolution_Addressbook_Factory:" BASE_VERSION
#define VCARD_CONTROL_ID "OAFIID:GNOME_Evolution_Addressbook_VCard_Control:" BASE_VERSION
-#define ADDRESSBOOK_CONTROL_ID "OAFIID:GNOME_Evolution_Addressbook_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 SELECT_NAMES_ID "OAFIID:GNOME_Evolution_Addressbook_SelectNames:" BASE_VERSION
@@ -58,13 +57,6 @@ factory (BonoboGenericFactory *factory,
if (strcmp (component_id, VCARD_CONTROL_ID) == 0)
return BONOBO_OBJECT (eab_vcard_control_new ());
- if (strcmp (component_id, ADDRESSBOOK_CONTROL_ID) == 0) {
- AddressbookView *view;
-
- /* FIXME: temporary hack, leaks a view */
- view = addressbook_view_new ();
- return BONOBO_OBJECT (addressbook_view_peek_folder_view (view));
- }
if (strcmp (component_id, COMPONENT_ID) == 0) {
BonoboObject *object = BONOBO_OBJECT (addressbook_component_peek ());
bonobo_object_ref (object);