aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2002-06-06 17:49:14 +0800
committerMichael Zucci <zucchi@src.gnome.org>2002-06-06 17:49:14 +0800
commita58c048d65965fd3b543f06dd1c4e2928c60ed68 (patch)
tree5484c15d04430affd83fe4d71cfb37d80d169484 /mail/message-list.h
parent88f3e2714d7a9251b2c5a01b7c1410f4f3ab60c6 (diff)
downloadgsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar.gz
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar.bz2
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar.lz
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar.xz
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.tar.zst
gsoc2013-evolution-a58c048d65965fd3b543f06dd1c4e2928c60ed68.zip
Keep track of the regeneration request in a list. (regen_list_free):
2002-06-06 Not Zed <NotZed@Ximian.com> * message-list.c (mail_regen_list): Keep track of the regeneration request in a list. (regen_list_free): Remove the request from the regenreation list. (message_list_set_folder): If there are any outstanding regneration requests, cancel them. (regen_list_regened): If we were cancelled, do nothing. (regen_list_regen): If we were cancelled, shortcut processing. This is all for #23571. svn path=/trunk/; revision=17129
Diffstat (limited to 'mail/message-list.h')
-rw-r--r--mail/message-list.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/message-list.h b/mail/message-list.h
index fc02c668eb..b1ff3f974f 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -86,6 +86,9 @@ struct _MessageList {
/* locks */
GMutex *hide_lock; /* for any 'hide' info above */
+ /* list of outstanding regeneration requests */
+ GList *regen;
+
/* for message/folder chagned event handling */
struct _MailAsyncEvent *async_event;
};