Use e_iconv_from_locale, not e_iconv_to_locale.

* gal/widgets/e-unicode.c (e_utf8_from_locale_string_sized):
Use e_iconv_from_locale, not e_iconv_to_locale.

svn path=/trunk/; revision=12562
This commit is contained in:
Chyla Zbigniew
2001-09-02 20:06:40 +00:00
parent 3b115f44f1
commit abef6d7dad

View File

@ -546,7 +546,7 @@ e_utf8_from_locale_string_sized (const gchar *string, gint bytes)
if (!string) return NULL;
ic = e_iconv_to_locale ();
ic = e_iconv_from_locale ();
return e_utf8_from_iconv_string_sized (ic, string, bytes);
}