mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-31 07:59:27 +02:00
Fix bug 2136 updated
As described by David Bailes, it should be std::locale nolocale("C");
This commit is contained in:
parent
3d5eec7929
commit
7485d88bcd
@ -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() )
|
||||
|
Loading…
x
Reference in New Issue
Block a user