1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-19 15:44:20 +01:00

Forgot to save before committing...grrrr!!!

This commit is contained in:
Leland Lucius
2015-06-04 04:09:00 -05:00
parent cbe77693ea
commit 4367dcf5a3

View File

@@ -963,7 +963,7 @@ void AudacityApp::InitLang( const wxString & lang )
wxString canon = lang;
#if defined(__MACOSX__)
#if defined(__WXMAC__)
// This should be reviewed again during the wx3 conversion.
// On OSX, the eventual call to setlocale() will fail to completely
@@ -985,9 +985,9 @@ void AudacityApp::InitLang( const wxString & lang )
#endif
#if wxCHECK_VERSION(3,0,0)
mLocale = new wxLocale(wxT(""), lang, wxT(""), true);
mLocale = new wxLocale(wxT(""), canon, wxT(""), true);
#else
mLocale = new wxLocale(wxT(""), lang, wxT(""), true, true);
mLocale = new wxLocale(wxT(""), canon, wxT(""), true, true);
#endif
for(unsigned int i=0; i<audacityPathList.GetCount(); i++)