mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 07:05:43 +01:00
Merge branch 'master' into cairocanvas
This commit is contained in:
commit
8f930477be
1 changed files with 5 additions and 2 deletions
|
|
@ -504,10 +504,13 @@ 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 ();
|
||||
AudioEngine::instance()->stop ();
|
||||
exit (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue