aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/bbdb/ChangeLog9
-rw-r--r--plugins/bbdb/bbdb.c4
-rw-r--r--plugins/caldav/ChangeLog9
-rw-r--r--plugins/caldav/caldav-source.c4
4 files changed, 24 insertions, 2 deletions
diff --git a/plugins/bbdb/ChangeLog b/plugins/bbdb/ChangeLog
index 6f3e48a8d0..53d5e13f7e 100644
--- a/plugins/bbdb/ChangeLog
+++ b/plugins/bbdb/ChangeLog
@@ -1,3 +1,12 @@
+2008-08-07 Paul Bolle <pebolle@tiscali.nl>
+
+ ** Fixes bug #546785
+
+ * 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.
+
2008-07-28 Lucian Langa <lucilanga@gnome.org>
** See bug #504417
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 ();
diff --git a/plugins/caldav/ChangeLog b/plugins/caldav/ChangeLog
index ffdb2e5140..43cc26248f 100644
--- a/plugins/caldav/ChangeLog
+++ b/plugins/caldav/ChangeLog
@@ -1,3 +1,12 @@
+2008-08-07 Paul Bolle <pebolle@tiscali.nl>
+
+ ** Fixes bug #546785
+
+ * 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.
+
2008-07-31 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #545568
diff --git a/plugins/caldav/caldav-source.c b/plugins/caldav/caldav-source.c
index 784e79bf8d..8b48bf6319 100644
--- a/plugins/caldav/caldav-source.c
+++ b/plugins/caldav/caldav-source.c
@@ -38,6 +38,8 @@
#include <string.h>
+#define d(x)
+
/*****************************************************************************/
/* prototypes */
int e_plugin_lib_enable (EPluginLib *ep,
@@ -84,7 +86,7 @@ e_plugin_lib_enable (EPluginLib *ep, int enable)
{
if (enable) {
- g_print ("CalDAV Eplugin starting up ...\n");
+ d(g_print ("CalDAV Eplugin starting up ...\n"));
ensure_caldav_source_group ();
}