diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-08-26 05:20:46 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-08-26 05:20:46 +0800 |
commit | dd0ff66d1f720715e8105f98096a44ffcec46d61 (patch) | |
tree | 53045a9415f202ca34ad0d25e821bea4345878fe /mail/message-tag-followup.c | |
parent | 5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62 (diff) | |
download | gsoc2013-evolution-dd0ff66d1f720715e8105f98096a44ffcec46d61.tar.gz 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-tag-followup.c')
-rw-r--r-- | mail/message-tag-followup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c index 6c8472bad5..6a2f62eaf6 100644 --- a/mail/message-tag-followup.c +++ b/mail/message-tag-followup.c @@ -149,7 +149,7 @@ get_tag_list (MessageTagEditor *editor) date = e_date_edit_get_time (followup->target_date); if (date != (time_t) -1) { - text = header_format_date (date, 0); + text = camel_header_format_date (date, 0); camel_tag_set (&tags, "due-by", text); g_free (text); } else { @@ -157,7 +157,7 @@ get_tag_list (MessageTagEditor *editor) } if (gtk_toggle_button_get_active (followup->completed)) { - text = header_format_date (followup->completed_date, 0); + text = camel_header_format_date (followup->completed_date, 0); camel_tag_set (&tags, "completed-on", text); g_free (text); } else { @@ -180,7 +180,7 @@ set_tag_list (MessageTagEditor *editor, CamelTag *tags) text = camel_tag_get (&tags, "due-by"); if (text && *text) { - date = header_decode_date (text, NULL); + date = camel_header_decode_date (text, NULL); e_date_edit_set_time (followup->target_date, date); } else { e_date_edit_set_time (followup->target_date, (time_t) -1); @@ -188,7 +188,7 @@ set_tag_list (MessageTagEditor *editor, CamelTag *tags) text = camel_tag_get (&tags, "completed-on"); if (text && *text) { - date = header_decode_date (text, NULL); + date = camel_header_decode_date (text, NULL); if (date != (time_t) 0) { gtk_toggle_button_set_active (followup->completed, TRUE); followup->completed_date = date; |