summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ui_config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/ui_config.cc')
-rw-r--r--gtk2_ardour/ui_config.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc
index 931030180c..354539b57b 100644
--- a/gtk2_ardour/ui_config.cc
+++ b/gtk2_ardour/ui_config.cc
@@ -308,7 +308,7 @@ int
UIConfiguration::store_color_theme ()
{
XMLNode* root;
- LocaleGuard lg (X_("C"));
+ LocaleGuard lg ();
root = new XMLNode("Ardour");
@@ -443,7 +443,7 @@ XMLNode&
UIConfiguration::get_state ()
{
XMLNode* root;
- LocaleGuard lg (X_("C"));
+ LocaleGuard lg ();
root = new XMLNode("Ardour");
@@ -461,7 +461,7 @@ XMLNode&
UIConfiguration::get_variables (std::string which_node)
{
XMLNode* node;
- LocaleGuard lg (X_("C"));
+ LocaleGuard lg ();
node = new XMLNode (which_node);
@@ -576,7 +576,7 @@ UIConfiguration::load_colors (XMLNode const & node)
void
UIConfiguration::load_modifiers (XMLNode const & node)
{
- PBD::LocaleGuard lg ("C");
+ PBD::LocaleGuard lg ();
XMLNodeList const nlist = node.children();
XMLNodeConstIterator niter;
XMLProperty const *name;