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
|
|
@ -1127,7 +1127,7 @@ LV2Plugin::add_state(XMLNode* root) const
|
|||
|
||||
XMLNode* child;
|
||||
char buf[32];
|
||||
LocaleGuard lg(X_("C"));
|
||||
LocaleGuard lg ();
|
||||
|
||||
for (uint32_t i = 0; i < parameter_count(); ++i) {
|
||||
if (parameter_is_input(i) && parameter_is_control(i)) {
|
||||
|
|
@ -1806,7 +1806,7 @@ LV2Plugin::set_state(const XMLNode& node, int version)
|
|||
const char* sym;
|
||||
const char* value;
|
||||
uint32_t port_id;
|
||||
LocaleGuard lg(X_("C"));
|
||||
LocaleGuard lg ();
|
||||
|
||||
if (node.name() != state_node_name()) {
|
||||
error << _("Bad node sent to LV2Plugin::set_state") << endmsg;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue