X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ed582841a275d236b9bac7651a0f3e7c91be868d..b6ca231f85a50ea7dc5af6d0f3c98854970dffdc:/src/common/intl.cpp diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 01d449fd53..4fb77495a0 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -932,7 +932,7 @@ wxString wxLocale::GetSystemEncodingName() #ifdef __WIN32__ // FIXME: what is the error return value for GetACP()? UINT codepage = ::GetACP(); - encname.Printf(_T("cp%u"), codepage); + encname.Printf(_T("windows-%u"), codepage); #elif defined(__UNIX_LIKE__) #if defined(HAVE_LANGINFO_H) && defined(CODESET)