mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Merged with trunk R708
git-svn-id: svn://localhost/ardour2/branches/midi@712 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
60454cc8dc
commit
8277d134b9
147 changed files with 3524 additions and 2683 deletions
|
|
@ -1082,11 +1082,11 @@ ExportDialog::fill_lists ()
|
|||
track_list->clear();
|
||||
master_list->clear();
|
||||
|
||||
Session::RouteList routes = session->get_routes ();
|
||||
boost::shared_ptr<Session::RouteList> routes = session->get_routes ();
|
||||
|
||||
for (Session::RouteList::iterator ri = routes.begin(); ri != routes.end(); ++ri) {
|
||||
|
||||
Route* route = (*ri);
|
||||
for (Session::RouteList::iterator ri = routes->begin(); ri != routes->end(); ++ri) {
|
||||
|
||||
boost::shared_ptr<Route> route = (*ri);
|
||||
|
||||
if (route->hidden()) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue