aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/component-factory.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@jhu.edu>2004-09-22 03:16:22 +0800
committerWilliam Jon McCann <mccann@src.gnome.org>2004-09-22 03:16:22 +0800
commit5cbb876604b359b367e4bd76ff2bb20eefbca27b (patch)
tree33c07de23ddf40806e61a6f80a2b45c0ecb89459 /addressbook/gui/component/component-factory.c
parentfc67e299211369cb086dde9389b229fab7e10a0a (diff)
downloadgsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar.gz
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar.bz2
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar.lz
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar.xz
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.tar.zst
gsoc2013-evolution-5cbb876604b359b367e4bd76ff2bb20eefbca27b.zip
Quiet debug messages.
2004-09-21 William Jon McCann <mccann@jhu.edu> * gui/component/component-factory.c (factory): Quiet debug messages. * gui/widgets/e-addressbook-view.c (eab_view_new): Remove unnecessary label widget placeholder. Make vertical scrollbar policy automatic. Use gtk_paned_add2 instead of gtk_container_add. * gui/component/apps_evolution_addressbook.schemas.in.in: Add missing show_preview schema. Add missing long descriptions. svn path=/trunk/; revision=27325
Diffstat (limited to 'addressbook/gui/component/component-factory.c')
-rw-r--r--addressbook/gui/component/component-factory.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/addressbook/gui/component/component-factory.c b/addressbook/gui/component/component-factory.c
index b42322440a..382722785e 100644
--- a/addressbook/gui/component/component-factory.c
+++ b/addressbook/gui/component/component-factory.c
@@ -46,13 +46,15 @@
#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
+#define d(x)
+
static BonoboObject *
factory (BonoboGenericFactory *factory,
const char *component_id,
void *closure)
{
- printf ("asked to activate component_id `%s'\n", component_id);
+ 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 ());