Add one more encoding name for EUC-JP for Solaris 8.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2005-09-12 21:22:17 +00:00
parent 9cb6c9a024
commit 95e33ad869

View File

@@ -521,7 +521,8 @@ wxFontMapperBase::NonInteractiveCharsetToEncoding(const wxString& charset)
encoding = wxFONTENCODING_SHIFT_JIS;
}
else if ( cs == wxT("EUC-JP") ||
cs == wxT("EUC_JP") )
cs == wxT("EUC_JP") ||
cs == wxT("EUCJP") )
{
encoding = wxFONTENCODING_EUC_JP;
}