From c85109fc322137596bf34cffc5445d568223c60d Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 12 Jul 2012 08:02:18 -0400 Subject: Coding style and whitespace cleanup. --- e-util/e-unicode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'e-util/e-unicode.c') diff --git a/e-util/e-unicode.c b/e-util/e-unicode.c index d92244107a..3ba257df14 100644 --- a/e-util/e-unicode.c +++ b/e-util/e-unicode.c @@ -199,7 +199,7 @@ e_utf8_to_charset_string_sized (const gchar *charset, if (!string) return NULL; - ic = camel_iconv_open(charset, "utf-8"); + ic = camel_iconv_open (charset, "utf-8"); ret = e_utf8_to_iconv_string_sized (ic, string, bytes); camel_iconv_close (ic); @@ -215,7 +215,7 @@ e_utf8_from_locale_string_sized (const gchar *string, if (!string) return NULL; - ic = camel_iconv_open("utf-8", camel_iconv_locale_charset()); + ic = camel_iconv_open ("utf-8", camel_iconv_locale_charset ()); ret = e_utf8_from_iconv_string_sized (ic, string, bytes); camel_iconv_close (ic); @@ -340,7 +340,7 @@ e_xml_get_translated_utf8_string_prop_by_name (const xmlNode *parent, return ret_val; } - combined_name = g_strdup_printf("_%s", prop_name); + combined_name = g_strdup_printf ("_%s", prop_name); prop = xmlGetProp ((xmlNode *) parent, (guchar *) combined_name); if (prop != NULL) { ret_val = g_strdup (gettext ((gchar *) prop)); -- cgit v1.2.3