X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-msg.c;h=e521233743bb534a9bef72e5af3605bc13856fd7;hp=a5be76f986e2fceb1287a8f7c31472f830d86195;hb=5c5a1ed820c6cd173a562590974a207168fc8ba3;hpb=147112f44ee59e59faaa71eecf76888c17ee0ece;ds=sidebyside diff --git a/src/modest-tny-msg.c b/src/modest-tny-msg.c index a5be76f..e521233 100644 --- a/src/modest-tny-msg.c +++ b/src/modest-tny-msg.c @@ -34,10 +34,8 @@ #include #include #include "modest-formatter.h" -#include +#include #include -#include -#include #include #include #include "modest-tny-mime-part.h" @@ -171,9 +169,8 @@ add_body_part (TnyMsg *msg, TnyStream *text_body_stream; /* Create the stream */ - text_body_stream = TNY_STREAM (tny_camel_stream_new - (camel_stream_mem_new_with_buffer - (body, (body ? strlen(body) : 0)))); + text_body_stream = TNY_STREAM (tny_camel_mem_stream_new_with_buffer + (body, (body ? strlen(body) : 0))); text_body_part = modest_formatter_create_body_part (NULL, msg); @@ -200,9 +197,8 @@ add_html_body_part (TnyMsg *msg, TnyStream *html_body_stream; /* Create the stream */ - html_body_stream = TNY_STREAM (tny_camel_stream_new - (camel_stream_mem_new_with_buffer - (body, strlen(body)))); + html_body_stream = TNY_STREAM (tny_camel_mem_stream_new_with_buffer + (body, strlen(body))); /* Create body part if needed */ html_body_part = modest_formatter_create_body_part (NULL, msg);