we always only use the "C" locale when saving.

This commit is contained in:
Robin Gareus 2016-05-05 21:49:56 +02:00
parent 2624c0966b
commit 3dc7728038
33 changed files with 60 additions and 74 deletions

View file

@ -107,7 +107,7 @@ XMLNode&
Controllable::get_state ()
{
XMLNode* node = new XMLNode (xml_node_name);
LocaleGuard lg (X_("C"));
LocaleGuard lg ();
char buf[64];
/* Waves' "Pressure3" has a parameter called "µ-iness"
@ -138,7 +138,7 @@ Controllable::get_state ()
int
Controllable::set_state (const XMLNode& node, int /*version*/)
{
LocaleGuard lg (X_("C"));
LocaleGuard lg ();
const XMLProperty* prop;
Stateful::save_extra_xml (node);