Merged with trunk R708

git-svn-id: svn://localhost/ardour2/branches/midi@712 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2006-07-28 01:08:57 +00:00
parent 60454cc8dc
commit 8277d134b9
147 changed files with 3524 additions and 2683 deletions

View file

@ -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;