aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-followup.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-09-19 01:05:23 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-09-19 01:05:23 +0800
commit2a88606f5d7bf0ce98b930d489e54157663751f3 (patch)
tree25fd8b1781bac3f4871efcf9c078bd78ab2cae8e /mail/message-tag-followup.c
parent6205217822761f5e424a9207b261786f9cb8772d (diff)
downloadgsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar.gz
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar.bz2
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar.lz
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar.xz
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.tar.zst
gsoc2013-evolution-2a88606f5d7bf0ce98b930d489e54157663751f3.zip
updated for camel namespace changes
2003-09-18 Jeffrey Stedfast <fejj@ximian.com> * component-factory.c: updated for camel namespace changes * em-folder-view.c: updated for camel namespace changes * em-format-html-display.c: updated for camel namespace changes * em-format-html-quote.c: updated for camel namespace changes * em-format.c: updated for camel namespace changes * em-popup.c: updated for camel namespace changes * em-utils.c: updated for camel namespace changes * mail-autofilter.c: updated for camel namespace changes * mail-ops.c: updated for camel namespace changes * mail-session.c: updated for camel namespace changes * message-list.c: updated for camel namespace changes * message-tag-followup.c: updated for camel namespace changes * importers/evolution-mbox-importer.c: updated for camel namespace changes 2003-09-18 Jeffrey Stedfast <fejj@ximian.com> * em-popup.c (emp_standard_menu_factory): Don't forget to initialise/increment 'i' when using it as an object id in the for-loop. * em-format.c (em_format_format_text): Initialise charset to NULL or it may be used uninitialised. Also include gnome-vfs-mime-handlers.h for gnome_vfs_mime_type_get_description(). svn path=/trunk/; revision=22610
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r--mail/message-tag-followup.c8
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;