1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

Removed wxLog* squelching on language initialization in AudacityApp::InitLang.

This commit is contained in:
v.audacity 2010-08-23 23:06:29 +00:00
parent 9678742ef8
commit d6bbfa6295

View File

@ -819,9 +819,8 @@ void AudacityApp::InitLang( const wxString & lang )
if( mLocale ) if( mLocale )
delete mLocale; delete mLocale;
if (lang != wxT("en")) { if (lang != wxT("en"))
wxLogNull nolog; {
// LL: I do not know why loading translations fail on the Mac if LANG is not // LL: I do not know why loading translations fail on the Mac if LANG is not
// set, but for some reason it does. So wrap the creation of wxLocale // set, but for some reason it does. So wrap the creation of wxLocale
// with the default translation. // with the default translation.