aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-remote/evolution-mail-store.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-08-15 12:40:55 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-08-15 12:40:55 +0800
commit821f184e823e86877d9034c0d4280ccbd492ebb8 (patch)
tree57c2e0a8391d3074ea103f81400ca3fcb5ff03b6 /plugins/mail-remote/evolution-mail-store.c
parenta4acb907a481ddc2761c17324071f16dd54ec0e7 (diff)
downloadgsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar.gz
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar.bz2
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar.lz
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar.xz
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.tar.zst
gsoc2013-evolution-821f184e823e86877d9034c0d4280ccbd492ebb8.zip
** See #271985.
2005-08-10 Not Zed <NotZed@Ximian.com> ** See #271985. * evolution-mail-session.c (is_storage): check for uri "" and pass exception to provider get. Disable lots of debug output. svn path=/trunk/; revision=30119
Diffstat (limited to 'plugins/mail-remote/evolution-mail-store.c')
-rw-r--r--plugins/mail-remote/evolution-mail-store.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mail-remote/evolution-mail-store.c b/plugins/mail-remote/evolution-mail-store.c
index c5025900cb..0bd3624c6c 100644
--- a/plugins/mail-remote/evolution-mail-store.c
+++ b/plugins/mail-remote/evolution-mail-store.c
@@ -134,7 +134,7 @@ impl_getProperties(PortableServer_Servant _servant,
const CORBA_char *name = names->_buffer[i];
Evolution_Mail_Property *prop = &props->_buffer[i];
- printf("getting property '%s'\n", name);
+ d(printf("getting property '%s'\n", name));
if (!strcmp(name, "name")) {
e_mail_property_set_string(prop, name, evolution_mail_store_get_name(ems));
@@ -548,7 +548,7 @@ evolution_mail_store_new(struct _EvolutionMailSession *s, struct _EAccount *ea)
struct _EvolutionMailStorePrivate *p;
static PortableServer_POA poa = NULL;
- printf("EvolutionMailStore.new(\"%s\")\n", ea?ea->name:"local");
+ d(printf("EvolutionMailStore.new(\"%s\")\n", ea?ea->name:"local"));
if (poa == NULL)
poa = bonobo_poa_get_threaded (ORBIT_THREAD_HINT_PER_REQUEST, NULL);
@@ -660,6 +660,6 @@ evolution_mail_store_changed(EvolutionMailStore *ems, Evolution_Mail_StoreChange
if (!e_mail_listener_emit(&p->listeners, (EMailListenerChanged)Evolution_Mail_StoreListener_changed,
bonobo_object_corba_objref((BonoboObject *)ems), changes)) {
evolution_mail_store_close_store(ems);
- printf("No more listeners for store, could dispose store object now?\n");
+ w(printf("No more listeners for store, could dispose store object now?\n"));
}
}