summaryrefslogtreecommitdiff
path: root/gtk2_ardour/keyeditor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-04 22:32:48 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-04 22:32:48 +0000
commit678c41d05fbf15b025a69ee233eaa7f1f7b3af2e (patch)
tree6a22dbfb7d204af1eb0f630ddbb9c7a77cabbf9b /gtk2_ardour/keyeditor.cc
parent97d74666e9e62f5d63765e236e02dbf8d145eee4 (diff)
remove OS X specific code for key editor binding displays
git-svn-id: svn://localhost/ardour2/branches/3.0@10895 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/keyeditor.cc')
-rw-r--r--gtk2_ardour/keyeditor.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/gtk2_ardour/keyeditor.cc b/gtk2_ardour/keyeditor.cc
index bafa0a4f6c..e3839c098b 100644
--- a/gtk2_ardour/keyeditor.cc
+++ b/gtk2_ardour/keyeditor.cc
@@ -283,24 +283,7 @@ KeyEditor::populate ()
if (*k == ActionManager::unbound_string) {
row[columns.binding] = string();
} else {
-
-#ifdef GTKOSX
- string label = (*k);
-
- /* Gtk/Quartz maps:
- NSAlternate/NSOption key to Mod1
- NSCommand key to Mod2
- */
-
-// replace_all (label, "<Primary>", _("Command-"));
-// replace_all (label, "<Alt>", _("Option-"));
-// replace_all (label, "<Shift>", _("Shift-"));
-// replace_all (label, "<Control>", _("Control-"));
-
- row[columns.binding] = label;
-#else
row[columns.binding] = (*k);
-#endif
}
}
}