diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/itip-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 0981b1c164..6163d59fae 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -1460,7 +1460,7 @@ itip_send_comp (ECalComponentItipMethod method, body = camel_text_to_html ( description, CAMEL_MIME_FILTER_TOHTML_PRE, 0); - e_msg_composer_set_body_text (composer, body, -1); + e_msg_composer_set_body_text (composer, body, TRUE); g_free (body); attachment = camel_mime_part_new (); @@ -1650,7 +1650,7 @@ reply_to_calendar_comp (ECalComponentItipMethod method, g_string_append (body, html_description); g_free (html_description); - e_msg_composer_set_body_text (composer, body->str, -1); + e_msg_composer_set_body_text (composer, body->str, TRUE); g_string_free (body, TRUE); } |