aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-02-12 07:00:13 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-02-12 07:00:13 +0800
commit2d4d49a088d9666ea76cdaafc2cd7a6d57623020 (patch)
tree89ecde9b01a65c6d7ce670e9e0e37f201f08f78b /mail/message-list.h
parentb5fe626e9d8c633ab9b2810df7081eb947dac292 (diff)
downloadgsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar.gz
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar.bz2
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar.lz
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar.xz
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.tar.zst
gsoc2013-evolution-2d4d49a088d9666ea76cdaafc2cd7a6d57623020.zip
Get followup-up message-list values. Also highlight the message in red if
2002-02-11 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (ml_tree_value_at): Get followup-up message-list values. Also highlight the message in red if the due-by date is past due (this is what Outlook does). (ml_duplicate_value): Handle follow-up columns. (ml_free_value): Same. (ml_initialize_value): Here too. (ml_value_is_empty): And here. (ml_value_to_string): And finally here. * message-tag-followup.c (message_tag_followup_i18n_name): New convenience function. svn path=/trunk/; revision=15680
Diffstat (limited to 'mail/message-list.h')
-rw-r--r--mail/message-list.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/message-list.h b/mail/message-list.h
index ed2652024f..42de65cbd8 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -26,7 +26,9 @@ enum {
COL_RECEIVED,
COL_TO,
COL_SIZE,
- COL_NEED_REPLY,
+ COL_FOLLOWUP_FLAG_STATUS,
+ COL_FOLLOWUP_FLAG,
+ COL_FOLLOWUP_DUE_BY,
COL_LAST,
@@ -37,8 +39,7 @@ enum {
};
#define MESSAGE_LIST_COLUMN_IS_ACTIVE(col) (col == COL_MESSAGE_STATUS || \
- col == COL_FLAGGED || \
- col == COL_NEED_REPLY)
+ col == COL_FLAGGED)
#define ML_HIDE_NONE_START (0)
#define ML_HIDE_NONE_END (2147483647)