]> git.saurik.com Git - wxWidgets.git/commitdiff
avoid locale that always returns US-ASCII on wxMac
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 18 Nov 2004 09:50:11 +0000 (09:50 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 18 Nov 2004 09:50:11 +0000 (09:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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)