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 | |
parent | 37a9065a63042dd3ec0c635b5181d963cc8a7493 (diff) | |
download | gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.gz gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.bz2 gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.lz gsoc2013-evolution-b06797413e94d089f36d80761259eec5f0b1157a.tar.xz 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
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/message-list.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 94ce9f14f5..44e1e0bfa9 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-06-27 Christopher James Lahey <clahey@helixcode.com> + + * message-list.c: Made dates display grouping information + properly. + 2000-06-27 Peter Williams <peterw@curious-george.helixcode.com> * message-list.c (mark_msg_seen): Need to return a value 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: |