diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 22:44:16 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-29 23:22:28 +0800 |
commit | 4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9 (patch) | |
tree | ce1154c5d7487fbd566c5b68df90fb8259b4604e /e-util/e-unicode.c | |
parent | e6c42ecc596fb16247e8d1d591a5d244a61d0e24 (diff) | |
download | gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.gz gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.tar.zst gsoc2013-evolution-4c05b9e925764a6035e3d0fcbfc1f0458d36f5d9.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-unicode.c')
-rw-r--r-- | e-util/e-unicode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e-util/e-unicode.c b/e-util/e-unicode.c index 1d792f15ad..9d610bc5d8 100644 --- a/e-util/e-unicode.c +++ b/e-util/e-unicode.c @@ -190,7 +190,7 @@ e_utf8_to_charset_string_sized (const gchar *charset, const gchar *string, gint ic = camel_iconv_open(charset, "utf-8"); ret = e_utf8_to_iconv_string_sized (ic, string, bytes); - camel_iconv_close(ic); + camel_iconv_close (ic); return ret; } @@ -205,7 +205,7 @@ e_utf8_from_locale_string_sized (const gchar *string, gint bytes) ic = camel_iconv_open("utf-8", camel_iconv_locale_charset()); ret = e_utf8_from_iconv_string_sized (ic, string, bytes); - camel_iconv_close(ic); + camel_iconv_close (ic); return ret; } @@ -332,7 +332,7 @@ e_xml_get_translated_utf8_string_prop_by_name (const xmlNode *parent, ret_val = g_strdup (gettext ((gchar *)prop)); xmlFree (prop); } - g_free(combined_name); + g_free (combined_name); return ret_val; } |