summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-11 05:52:39 +0100
committerRobin Gareus <robin@gareus.org>2014-02-11 05:52:39 +0100
commitb75fb503fb53d46eebe85dbb3fb5b9f163d860a7 (patch)
treeb4534f72131b7aa8d2153a58ca2692e68bab55f1 /gtk2_ardour
parent0bab9d28228cb2ef82698728380bc5581e5044dc (diff)
list action-names as part of --bindings
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/ardour_ui.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 88bcb9e486..42f85573ff 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -496,8 +496,9 @@ ARDOUR_UI::post_engine ()
vector<string>::iterator n;
vector<string>::iterator k;
- for (n = names.begin(), k = keys.begin(); n != names.end(); ++n, ++k) {
- cout << "Action: " << (*n) << " bound to " << (*k) << endl;
+ vector<string>::iterator p;
+ for (n = names.begin(), k = keys.begin(), p = paths.begin(); n != names.end(); ++n, ++k, ++p) {
+ cout << "Action: '" << (*n) << "' bound to '" << (*k) << "' Path: '" << (*p) << "'" << endl;
}
halt_connection.disconnect ();