applied utf-8 fix patch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-09-02 22:44:00 +00:00
parent f3d6a60294
commit 5707316c9c
3 changed files with 6 additions and 7 deletions

View File

@@ -192,16 +192,14 @@ bool wxGetNativeFontEncoding(wxFontEncoding encoding,
break;
case wxFONTENCODING_UTF8:
// FIXME: this is probably false, but this is how they are called on
// my system and I don't know what the standard XFLD is (VZ)
info->xregistry = wxT("iso646.1991");
info->xregistry = wxT("iso10646");
info->xencoding = wxT("*");
break;
case wxFONTENCODING_KOI8:
info->xregistry = wxT("koi8");
// we don't make distinction between koi8-r and koi8-u (so far)
// we don't make distinction between koi8-r, koi8-u and koi8-ru (so far)
info->xencoding = wxT("*");
break;