ISO8859-1 is also supported by GTK+ 2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38641 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-04-09 20:42:40 +00:00
parent 7182d62a02
commit 84a9b3f89e

View File

@ -333,8 +333,10 @@ bool wxGetNativeFontEncoding(wxFontEncoding encoding,
info->encoding = wxFONTENCODING_SYSTEM;
return true;
case wxFONTENCODING_ISO8859_1:
case wxFONTENCODING_UTF8:
info->encoding = wxFONTENCODING_UTF8;
// these are always supported by GTK+ 2
info->encoding = encoding;
return true;
default: