diff options
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r-- | my-evolution/e-summary.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 952976cd45..d11c85a25d 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -777,6 +777,7 @@ e_summary_count_connections (ESummary *summary) count += c->count (summary, c->closure); } + g_print ("Count: %d", count); return count; } @@ -824,6 +825,11 @@ e_summary_set_online (ESummary *summary, c->callback_closure = closure; c->set_online (summary, progress, online, c->closure); + g_print ("Setting %s\n", online ? "online" : "offline"); + + if (callback != NULL) { + callback (summary, closure); + } } } |