]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/intl.cpp
reverted, the problem is deeper than that
[wxWidgets.git] / src / common / intl.cpp
index f72741e85d2ed1c7df93a83c797a9b76c3894cc8..70f1a49cec52acdc453abcd63dc9ec4a8331cd23 100644 (file)
@@ -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)