diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-28 04:52:33 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-28 04:52:33 +0800 |
commit | b06797413e94d089f36d80761259eec5f0b1157a (patch) | |
tree | 97f6646e8dc0828baa72f30bfafd4eeb43da22f2 /mail/message-list.c | |
parent | 37a9065a63042dd3ec0c635b5181d963cc8a7493 (diff) | |
download | gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.gz gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.zst gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.zip |
Made dates display grouping information properly.
2000-06-27 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Made dates display grouping information
properly.
svn path=/trunk/; revision=3765
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 06d21ae753..2edc563489 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -496,9 +496,10 @@ ml_value_to_string (ETableModel *etm, int col, const void *value, void *data) case COL_ATTACHMENT: case COL_DELETED: case COL_UNREAD: + return g_strdup_printf("%d", (int) value); case COL_SENT: case COL_RECEIVED: - return g_strdup_printf("%d", (int) value); + return filter_date(value); case COL_FROM: case COL_SUBJECT: |