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

@ -303,7 +303,7 @@ AutomationList::state (bool full)
{
XMLNode* root = new XMLNode (X_("AutomationList"));
char buf[64];
LocaleGuard lg (X_("C"));
LocaleGuard lg ();
root->add_property ("automation-id", EventTypeMap::instance().to_symbol(_parameter));
@ -421,7 +421,7 @@ AutomationList::deserialize_events (const XMLNode& node)
int
AutomationList::set_state (const XMLNode& node, int version)
{
LocaleGuard lg (X_("C"));
LocaleGuard lg ();
XMLNodeList nlist = node.children();
XMLNode* nsos;
XMLNodeIterator niter;