aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-send-recv.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-26 19:03:15 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-26 19:04:05 +0800
commit6ddc2340d03b6fe3745e97ca10336408833c7294 (patch)
treea0749b4ef9c52beac21e1adddf9a96a0fe886288 /mail/mail-send-recv.c
parentfd9ab2a8cf134738a8906764527b62f1db209641 (diff)
downloadgsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar.gz
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar.bz2
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar.lz
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar.xz
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.tar.zst
gsoc2013-evolution-6ddc2340d03b6fe3745e97ca10336408833c7294.zip
Bug 651062 - refresh_folders_exec() reports progress incorrectly.
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r--mail/mail-send-recv.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index dc3c9ed7ee..eb661cc614 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -960,6 +960,8 @@ refresh_folders_exec (struct _refresh_folders_msg *m,
get_folders (m->store, m->folders, m->finfo);
+ camel_operation_push_message (cancellable, _("Updating..."));
+
for (i=0;i<m->folders->len;i++) {
folder = e_mail_session_uri_to_folder_sync (
m->info->session,
@@ -980,11 +982,12 @@ refresh_folders_exec (struct _refresh_folders_msg *m,
break;
if (m->info->state != SEND_CANCELLED)
- g_signal_emit_by_name (
- m->info->cancellable, "status",
- _("Updating..."), 100 * i / m->folders->len);
+ camel_operation_progress (
+ cancellable, 100 * i / m->folders->len);
}
+ camel_operation_pop_message (cancellable);
+
if (cancellable)
g_signal_handler_disconnect (m->info->cancellable, handler_id);
}