From a0a9b026a5afd3732a0db08fcc11cb27597990d4 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Wed, 28 Jul 2004 18:06:31 +0000 Subject: Fixes for api changes in mail/ for 61940. 2004-07-28 Not Zed * e-msg-composer.c: Fixes for api changes in mail/ for 61940. svn path=/trunk/; revision=26761 --- composer/ChangeLog | 4 ++++ composer/e-msg-composer.c | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'composer') diff --git a/composer/ChangeLog b/composer/ChangeLog index 5bf57caf76..746df20a3e 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,7 @@ +2004-07-28 Not Zed + + * e-msg-composer.c: Fixes for api changes in mail/ for 61940. + 2004-07-23 Radek Doulik * listener.c: removed unused static variable listener_vepv diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 1aa950cdfe..b1e98f10ce 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -3568,7 +3568,7 @@ handle_multipart_signed (EMsgComposer *composer, CamelMultipart *multipart, int ssize_t len; char *html; - html = em_utils_part_to_html (mime_part, &len); + html = em_utils_part_to_html (mime_part, &len, NULL); e_msg_composer_set_pending_body (composer, html, len); } else { e_msg_composer_attach (composer, mime_part); @@ -3626,7 +3626,7 @@ handle_multipart_encrypted (EMsgComposer *composer, CamelMultipart *multipart, i ssize_t len; char *html; - html = em_utils_part_to_html (mime_part, &len); + html = em_utils_part_to_html (mime_part, &len, NULL); e_msg_composer_set_pending_body (composer, html, len); } else { e_msg_composer_attach (composer, mime_part); @@ -3686,7 +3686,7 @@ handle_multipart_alternative (EMsgComposer *composer, CamelMultipart *multipart, ssize_t len; char *html; - html = em_utils_part_to_html(text_part, &len); + html = em_utils_part_to_html(text_part, &len, NULL); e_msg_composer_set_pending_body(composer, html, len); } } @@ -3729,7 +3729,7 @@ handle_multipart (EMsgComposer *composer, CamelMultipart *multipart, int depth) char *html; /* Since the first part is not multipart/alternative, then this must be the body */ - html = em_utils_part_to_html(mime_part, &len); + html = em_utils_part_to_html(mime_part, &len, NULL); e_msg_composer_set_pending_body(composer, html, len); } else if (camel_mime_part_get_content_id (mime_part) || camel_mime_part_get_content_location (mime_part)) { @@ -4007,7 +4007,7 @@ e_msg_composer_new_with_message (CamelMimeMessage *message) ssize_t len; char *html; - html = em_utils_part_to_html((CamelMimePart *)message, &len); + html = em_utils_part_to_html((CamelMimePart *)message, &len, NULL); e_msg_composer_set_pending_body(new, html, len); } -- cgit