aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-08-26 05:20:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-08-26 05:20:46 +0800
commitdd0ff66d1f720715e8105f98096a44ffcec46d61 (patch)
tree53045a9415f202ca34ad0d25e821bea4345878fe /mail/message-list.c
parent5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62 (diff)
downloadgsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.gz
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.bz2
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.lz
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.xz
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.zst
gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.zip
updated for namespace changed made to camel-mime-utils.[c,h]
2003-08-25 Jeffrey Stedfast <fejj@ximian.com> * mail-display.c: updated for namespace changed made to camel-mime-utils.[c,h] * mail-format.c: updated for namespace changed made to camel-mime-utils.[c,h] * mail-ops.c: updated for namespace changed made to camel-mime-utils.[c,h] * message-list.c: updated for namespace changed made to camel-mime-utils.[c,h] * message-tag-followup.c: updated for namespace changed made to camel-mime-utils.[c,h] svn path=/trunk/; revision=22357
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 77e03b656e..93722e6d87 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -931,7 +931,7 @@ ml_tree_value_at (ETreeModel *etm, ETreePath path, int col, void *model_data)
tag = camel_tag_get ((CamelTag **) &msg_info->user_tags, "due-by");
if (tag && *tag) {
- due_by = header_decode_date (tag, NULL);
+ due_by = camel_header_decode_date (tag, NULL);
return GINT_TO_POINTER (due_by);
} else {
return GINT_TO_POINTER (0);
@@ -1001,7 +1001,7 @@ ml_tree_value_at (ETreeModel *etm, ETreePath path, int col, void *model_data)
time_t now = time (NULL);
time_t target_date;
- target_date = header_decode_date (due_by, NULL);
+ target_date = camel_header_decode_date (due_by, NULL);
if (now >= target_date) {
/* FIXME: extract from the xpm somehow. */
colour = "#A7453E";