diff options
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c index 0cea6371b4..fb81db1798 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -2263,7 +2263,7 @@ e_xml_get_translated_utf8_string_prop_by_name (const xmlNode *parent, const xmlC combined_name = g_strdup_printf("_%s", prop_name); prop = xmlGetProp ((xmlNode *) parent, combined_name); if (prop != NULL) { - ret_val = e_utf8_from_locale_string (gettext (prop)); + ret_val = g_strdup (gettext (prop)); xmlFree (prop); } g_free(combined_name); |