Fix a typo: to_codeset => from_codeset. (#58195, #55152)

* glib/gconvert.c (g_iconv_open):
	Fix a typo: to_codeset => from_codeset.
	(#58195, #55152)
This commit is contained in:
Hidetoshi Tajima 2001-10-17 16:58:26 +00:00
parent 01b07656ea
commit 5641d7107e
9 changed files with 49 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -1,3 +1,9 @@
2001-10-17 HideToshi Tajima <hidetoshi.tajima@sun.com>
* glib/gconvert.c (g_iconv_open):
Fix a typo: to_codeset => from_codeset.
(#58195, #55152)
Fri Oct 12 18:24:02 2001 Tim Janik <timj@gtk.org>
* glib/gpattern.[hc]: make struct _GPatternSpec and GMatchType

View File

@ -111,7 +111,7 @@ g_iconv_open (const gchar *to_codeset,
if (!try_conversion (to_codeset, from_codeset, &cd))
{
const char **to_aliases = _g_charset_get_aliases (to_codeset);
const char **from_aliases = _g_charset_get_aliases (to_codeset);
const char **from_aliases = _g_charset_get_aliases (from_codeset);
if (from_aliases)
{