diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2008-08-08 01:35:04 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-08 01:35:04 +0800 |
commit | 92c958d9bf5f875848650c7e137e5d7ca14a96aa (patch) | |
tree | 689acbb86df4fd2f102cb6e01f0eec6091c06f70 /plugins/caldav | |
parent | 72884d55233e0ce5a075ad16a7b97e39c2878af6 (diff) | |
download | gsoc2013-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/caldav')
-rw-r--r-- | plugins/caldav/ChangeLog | 9 | ||||
-rw-r--r-- | plugins/caldav/caldav-source.c | 4 |
2 files changed, 12 insertions, 1 deletions
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 (); } |