diff options
author | Milan Crha <mcrha@redhat.com> | 2011-02-02 01:09:00 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-02-02 01:09:00 +0800 |
commit | a10247b540f298d0ae6360b5d31f7f47a733adf8 (patch) | |
tree | 1be8b726e04b120e370dffbe862fb74f97b2cc46 /calendar | |
parent | a9fb511ced4cfaffb7109e58a9db66e6279e309c (diff) | |
download | gsoc2013-evolution-a10247b540f298d0ae6360b5d31f7f47a733adf8.tar.gz gsoc2013-evolution-a10247b540f298d0ae6360b5d31f7f47a733adf8.tar.zst gsoc2013-evolution-a10247b540f298d0ae6360b5d31f7f47a733adf8.zip |
Bug #635144 - Using external editor duplicates signature
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); } |