mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 23:17:46 +01:00
we always only use the "C" locale when saving.
This commit is contained in:
parent
2624c0966b
commit
3dc7728038
33 changed files with 60 additions and 74 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue