summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2018-11-07 13:02:49 -0800
committerLen Ovens <len@ovenwerks.net>2018-11-07 17:00:16 -0800
commit80fd215a5cf0dad7013b2ac5c94dd24d14767339 (patch)
treef1ee5db0f284645bbe5c666fba8cfe0f905eb437 /libs/ardour/ardour/session.h
parent41abf75077921766f25aae45c87aca927244e520 (diff)
get_stripables and get_routelist are now presentationinfo aware
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index b5997a3a83..36f323a6d4 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -287,7 +287,7 @@ public:
boost::shared_ptr<RTTaskList> rt_tasklist () { return _rt_tasklist; }
- RouteList get_routelist (bool mixer_order = false) const;
+ RouteList get_routelist (bool mixer_order = false, PresentationInfo::Flag fl = PresentationInfo::MixerRoutes) const;
CoreSelection& selection () { return *_selection; }
@@ -298,7 +298,7 @@ public:
* with get_routes()
*/
- void get_stripables (StripableList&) const;
+ void get_stripables (StripableList&, PresentationInfo::Flag fl = PresentationInfo::MixerStripables) const;
StripableList get_stripables () const;
boost::shared_ptr<RouteList> get_tracks() const;
boost::shared_ptr<RouteList> get_routes_with_internal_returns() const;