1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 22:12:58 +02:00

Fix bug 2136 updated

As described by David Bailes, it should be std::locale nolocale("C");
This commit is contained in:
Steve Daulton
2019-06-24 20:34:54 +01:00
committed by GitHub
parent 3d5eec7929
commit 7485d88bcd

View File

@@ -84,7 +84,7 @@ void CommandMessageTarget::AddBool(const bool value, const wxString &name){
void CommandMessageTarget::AddItem(const double value, const wxString &name){
std::stringstream str;
std::locale nolocale("");
std::locale nolocale("C");
str.imbue(nolocale);
if( name.empty() )