diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-07 12:36:26 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-07 12:36:26 +0800 |
commit | 48ad64875b482b16f35de414f51b37533ca506bb (patch) | |
tree | 314bee7cd653f496959bb91db3753a7bd885219f /mail/mail-ops.c | |
parent | 13dfba8729e2105f6a9e8f3d01e6c21d30cfb13f (diff) | |
download | gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.gz gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.zst gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.zip |
** See #58017.
2004-05-07 Not Zed <NotZed@Ximian.com>
** See #58017.
* message-list.c (mail_regen_list): use thread_queued, so we don't
regen out of order.
* em-folder-view.c (emfv_list_message_selected): use the queue
thread so we don't get messages out of order.
* mail-ops.c (mail_transfer_messages): use thread_queued_slow.
(mail_prep_offline): and here too.
svn path=/trunk/; revision=25819
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index fc54aa9c82..cf0b74e6f1 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -979,7 +979,7 @@ mail_transfer_messages (CamelFolder *source, GPtrArray *uids, m->done = done; m->data = data; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_queued_slow, (EMsg *)m); } /* ** SCAN SUBFOLDERS ***************************************************** */ @@ -2171,7 +2171,7 @@ mail_prep_offline(const char *uri, m->data = data; m->done = done; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_queued_slow, (EMsg *)m); } /* ** GO OFFLINE ***************************************************** */ |