Change get_routes to get_routelist where appropriate.

This commit is contained in:
Len Ovens 2018-11-07 13:05:05 -08:00
parent 80fd215a5c
commit 0140b24248
7 changed files with 13 additions and 38 deletions

View file

@ -1486,16 +1486,7 @@ EditorRoutes::initial_display ()
StripableList s;
RouteList r (*_session->get_routes());
for (RouteList::iterator ri = r.begin(); ri != r.end(); ++ri) {
s.push_back (*ri);
}
VCAList v (_session->vca_manager().vcas());
for (VCAList::iterator vi = v.begin(); vi != v.end(); ++vi) {
s.push_back (*vi);
}
_session->get_stripables (s);
_editor->add_stripables (s);
sync_treeview_from_presentation_info (Properties::order);