diff options
author | Not Zed <NotZed@Ximian.com> | 2004-07-28 22:38:50 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-07-28 22:38:50 +0800 |
commit | 10bfd57c379db75b8def5b6bc1590f14484de03e (patch) | |
tree | 735c02e72bd543c02345ad561a0eeec4a061e5fa /mail/em-popup.c | |
parent | c43feee67589f6da65f5ea8fa586d458b363d44a (diff) | |
download | gsoc2013-evolution-10bfd57c379db75b8def5b6bc1590f14484de03e.tar.gz gsoc2013-evolution-10bfd57c379db75b8def5b6bc1590f14484de03e.tar.zst gsoc2013-evolution-10bfd57c379db75b8def5b6bc1590f14484de03e.zip |
** See #61940.
2004-07-28 Not Zed <NotZed@Ximian.com>
** See #61940.
* em-composer-utils.c (composer_set_body): add emformat source arg.
(em_utils_reply_to_message): take source arg. Fixed callers.
* em-utils.c (em_utils_message_to_html): take a source formatter
argument, so we can copy/honour settings from it.
(em_utils_part_to_html): similar.
svn path=/trunk/; revision=26757
Diffstat (limited to 'mail/em-popup.c')
-rw-r--r-- | mail/em-popup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-popup.c b/mail/em-popup.c index d33bfe0e81..6e98f17fe8 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -772,7 +772,7 @@ emp_part_popup_reply_sender (GtkWidget *w, EMPopupTarget *t) CamelMimeMessage *message; message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part); - em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_SENDER); + em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_SENDER, NULL); } static void @@ -781,7 +781,7 @@ emp_part_popup_reply_list (GtkWidget *w, EMPopupTarget *t) CamelMimeMessage *message; message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part); - em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_LIST); + em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_LIST, NULL); } static void @@ -790,7 +790,7 @@ emp_part_popup_reply_all (GtkWidget *w, EMPopupTarget *t) CamelMimeMessage *message; message = (CamelMimeMessage *) camel_medium_get_content_object ((CamelMedium *) t->data.part.part); - em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_ALL); + em_utils_reply_to_message (NULL, NULL, message, REPLY_MODE_ALL, NULL); } static void |