diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-03 04:06:40 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-03 04:06:40 +0800 |
commit | abef6d7dad98ca785fc93f21f67fcf6ba5435ff2 (patch) | |
tree | 35ddd815b1e26b12d258764146d167a3bfec888b | |
parent | 3b115f44f112490e3e0195bc2276b31c951a7465 (diff) | |
download | gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar.gz gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar.bz2 gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar.lz gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar.xz gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.tar.zst gsoc2013-evolution-abef6d7dad98ca785fc93f21f67fcf6ba5435ff2.zip |
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
-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 93130741d1..06e01de7fe 100644 --- a/widgets/misc/e-unicode.c +++ b/widgets/misc/e-unicode.c @@ -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); } |