X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2e0ef2ae56934ae3c13d23a981ce60c6bfc80cd3..c01920998145b5248372a124fdcd53f0ba1582d5:/src/common/intl.cpp diff --git a/src/common/intl.cpp b/src/common/intl.cpp index f72741e85d..70f1a49cec 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -2185,6 +2185,9 @@ wxString wxLocale::GetSystemEncodingName() // FIXME: what is the error return value for GetACP()? UINT codepage = ::GetACP(); encname.Printf(_T("windows-%u"), codepage); +#elif defined(__WXMAC__) + // default is just empty string, this resolves to the default system + // encoding later #elif defined(__UNIX_LIKE__) #if defined(HAVE_LANGINFO_H) && defined(CODESET)