mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +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
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue