[evolution] EMsgComposer - Use underscore to split the variable name



commit 0e01debcbec58439d9069ce43642d0223e9b51f1
Author: Tomas Popela <tpopela redhat com>
Date:   Mon Nov 3 16:58:34 2014 +0100

    EMsgComposer - Use underscore to split the variable name

 composer/e-msg-composer.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 41a7275..b0dc783 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -4280,11 +4280,11 @@ handle_mailto (EMsgComposer *composer,
        g_free (subject);
 
        if (body) {
-               gchar *htmlbody;
+               gchar *html_body;
 
-               htmlbody = camel_text_to_html (body, CAMEL_MIME_FILTER_TOHTML_PRE, 0);
-               set_editor_text (composer, htmlbody, TRUE, TRUE);
-               g_free (htmlbody);
+               html_body = camel_text_to_html (body, CAMEL_MIME_FILTER_TOHTML_PRE, 0);
+               set_editor_text (composer, html_body, TRUE, TRUE);
+               g_free (html_body);
        }
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]