aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/bbdb/bbdb.c
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2008-08-08 01:35:04 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-08 01:35:04 +0800
commit92c958d9bf5f875848650c7e137e5d7ca14a96aa (patch)
tree689acbb86df4fd2f102cb6e01f0eec6091c06f70 /plugins/bbdb/bbdb.c
parent72884d55233e0ce5a075ad16a7b97e39c2878af6 (diff)
downloadgsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar.gz
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar.bz2
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar.lz
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar.xz
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.tar.zst
gsoc2013-evolution-92c958d9bf5f875848650c7e137e5d7ca14a96aa.zip
** Fixes bug #546785
2008-08-07 Paul Bolle <pebolle@tiscali.nl> ** Fixes bug #546785 * plugins/bbdb/bbdb.c: (e_plugin_lib_enable): The bbdb plugin is noisy when enabled: "BBDB spinning up..." Make this plugin just as polite as google-account-setup. * plugins/caldav/caldav-source.c: (e_plugin_lib_enable): The caldav plugin is noisy when enabled: "CalDAV Eplugin starting up ..." Make this plugin just as polite as google-account-setup. svn path=/trunk/; revision=35928
Diffstat (limited to 'plugins/bbdb/bbdb.c')
-rw-r--r--plugins/bbdb/bbdb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c
index 23595be330..98db91fb99 100644
--- a/plugins/bbdb/bbdb.c
+++ b/plugins/bbdb/bbdb.c
@@ -49,6 +49,8 @@
#include "bbdb.h"
+#define d(x)
+
/* Plugin hooks */
int e_plugin_lib_enable (EPluginLib *ep, int enable);
void bbdb_handle_reply (EPlugin *ep, EMEventTargetMessage *target);
@@ -119,7 +121,7 @@ e_plugin_lib_enable (EPluginLib *ep, int enable)
{
/* Start up the plugin. */
if (enable) {
- fprintf (stderr, "BBDB spinning up...\n");
+ d(fprintf (stderr, "BBDB spinning up...\n"));
if (bbdb_check_gaim_enabled ())
bbdb_sync_buddy_list_check ();