From c196a212d0d0a65f33c11ff5e84b517f1cd2f422 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 7 Dec 2011 02:43:20 +0000 Subject: [PATCH] Remove work-around for fixed bug in sgettext(). git-svn-id: svn://localhost/ardour2/branches/3.0@10924 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/rc_option_editor.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 6aea36168f..5594bbf2f1 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -310,9 +310,7 @@ public: for (int x = 0; modifiers[x].name; ++x) { if (modifiers[x].modifier == Keyboard::edit_modifier ()) { - string lookup_str = "key|"; - lookup_str += modifiers[x].name; - _edit_modifier_combo.set_active_text (S_(lookup_str.c_str())); + _edit_modifier_combo.set_active_text (S_(modifiers[x].name)); break; } }