summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-07-25 17:31:30 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 11:40:53 -0400
commit24df2b559464f981e2c6a91719e3cfe2a76a197c (patch)
tree591321c5ee6eaa73d29815c02903f0f89745a524 /libs
parenta2fefe68db911fb514f463557d23213c8bae1fda (diff)
NO-OP: mark various state property names as explicitly non-translated
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index c447f26875..741757691a 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2329,22 +2329,22 @@ Route::state(bool full_state)
XMLNode *node = new XMLNode("Route");
ProcessorList::iterator i;
- node->set_property ("id", id ());
- node->set_property ("name", name());
- node->set_property ("default-type", _default_type);
- node->set_property ("strict-io", _strict_io);
+ node->set_property (X_("id"), id ());
+ node->set_property (X_("name"), name());
+ node->set_property (X_("default-type"), _default_type);
+ node->set_property (X_("strict-io"), _strict_io);
node->add_child_nocopy (_presentation_info.get_state());
- node->set_property ("active", _active);
- node->set_property ("denormal-protection", _denormal_protection);
- node->set_property ("meter-point", _meter_point);
- node->set_property ("disk-io-point", _disk_io_point);
+ node->set_property (X_("active"), _active);
+ node->set_property (X_("denormal-protection"), _denormal_protection);
+ node->set_property (X_("meter-point"), _meter_point);
+ node->set_property (X_("disk-io-point"), _disk_io_point);
- node->set_property ("meter-type", _meter_type);
+ node->set_property (X_("meter-type"), _meter_type);
if (_route_group) {
- node->set_property ("route-group", _route_group->name());
+ node->set_property (X_("route-group"), _route_group->name());
}
node->add_child_nocopy (_solo_control->get_state ());