Remove work-around for fixed bug in sgettext().
authorCarl Hetherington <carl@carlh.net>
Wed, 7 Dec 2011 02:43:20 +0000 (02:43 +0000)
committerCarl Hetherington <carl@carlh.net>
Wed, 7 Dec 2011 02:43:20 +0000 (02:43 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10924 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/rc_option_editor.cc

index 6aea36168f9c64c939eecb993ceb090facaac3af..5594bbf2f16bd38c6a5c2e6cc1afaba75674c61b 100644 (file)
@@ -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;
                        }
                }