diff options
author | Not Zed <NotZed@Ximian.com> | 2003-08-23 05:14:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-08-23 05:14:36 +0800 |
commit | cbf3647544de3dc02853c1652cfdbbeb29ce93dd (patch) | |
tree | 75355fecf90a56c2cd7aeb053afccff1b98bdba6 /mail/mail-ops.c | |
parent | bc43a79394e30a2d28984262ce37f74a12acec00 (diff) | |
download | gsoc2013-evolution-cbf3647544de3dc02853c1652cfdbbeb29ce93dd.tar.gz gsoc2013-evolution-cbf3647544de3dc02853c1652cfdbbeb29ce93dd.tar.zst gsoc2013-evolution-cbf3647544de3dc02853c1652cfdbbeb29ce93dd.zip |
translate the local time format.
2003-08-22 Not Zed <NotZed@Ximian.com>
* mail-format.c (write_date): translate the local time format.
2003-08-20 David Woodhouse <dwmw2@infradead.org>
* mail-format.c (write_date): Use e_utf8_strftime() to generate
localised time; avoid gratuitous extra translation and array of
day names, and the autoconf magic which made Not Zed dislike the
inclusion of the timezone name.
2003-08-05 Not Zed <NotZed@Ximian.com>
** See bug #32732
* message-list.c (mail_regen_list): use thread_new.
* mail-local.c (reconfigure_response): use thread_new.
* mail-display.c (stream_write_or_redisplay_when_loaded): use
thread_new.
* mail-config.c (mail_config_check_service): use thread_new rather
than queue.
* mail-callbacks.c (view_msg): change to use mail_get_messages(),
fixes FIXME.
(do_view_messages): handle get_messages callback.
(do_view_message): removed.
* mail-ops.c (mail_get_folderinfo): Use a new thread thread
semantic.
(mail_save_part): "
(mail_store_set_offline): "
(mail_sync_folder): use queued_slow thread queue.
(mail_expunge_folder): "
(mail_empty_trash): "
svn path=/trunk/; revision=22340
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index fcfcdaba9f..489dda4402 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1208,7 +1208,7 @@ mail_get_folderinfo (CamelStore *store, CamelOperation *op, void (*done)(CamelSt m->data = data; id = m->msg.seq; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_new, (EMsg *)m); return id; } @@ -1582,7 +1582,7 @@ mail_sync_folder(CamelFolder *folder, void (*done) (CamelFolder *folder, void *d m->data = data; m->done = done; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_queued_slow, (EMsg *)m); } /* ******************************************************************************** */ @@ -1654,7 +1654,7 @@ mail_expunge_folder(CamelFolder *folder, void (*done) (CamelFolder *folder, void m->data = data; m->done = done; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_queued_slow, (EMsg *)m); } /* ******************************************************************************** */ @@ -1729,7 +1729,7 @@ mail_empty_trash(EAccount *account, void (*done) (EAccount *account, void *data) m->data = data; m->done = done; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_queued_slow, (EMsg *)m); } /* ** GET MESSAGE(s) ***************************************************** */ @@ -2150,7 +2150,7 @@ mail_save_part (CamelMimePart *part, const char *path, m->done = done; id = m->msg.seq; - e_thread_put (mail_thread_queued, (EMsg *)m); + e_thread_put (mail_thread_new, (EMsg *)m); return id; } @@ -2325,7 +2325,7 @@ mail_store_set_offline (CamelStore *store, gboolean offline, m->done = done; id = m->msg.seq; - e_thread_put(mail_thread_queued, (EMsg *)m); + e_thread_put(mail_thread_new, (EMsg *)m); return id; } |