diff options
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index de152cec2e..78af58644d 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -72,17 +72,21 @@ struct _MessageList { /* IMPORTANT: You MUST have obtained the hide lock, to operate on this data */ GHashTable *hidden; struct _EMemPool *hidden_pool; - int hide_unhidden, /* total length, before hiding */ - hide_before, hide_after; /* hide ranges of messages */ - + int hide_unhidden; /* total length, before hiding */ + int hide_before, hide_after; /* hide ranges of messages */ + /* Current search string, or %NULL */ char *search; - + /* Are we displaying threaded view? */ - gboolean threaded; + guint threaded : 1; + /* do we automatically hide deleted messages? */ - gboolean hidedeleted; - + guint hidedeleted : 1; + + /* is the message-list object in a destroyed state? */ + guint destroyed : 1; + /* Where the ETree cursor is. */ int cursor_row; char *cursor_uid; |