summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 6ef78eacb6..8ec63f5714 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -4230,24 +4230,6 @@ Session::get_remote_nth_route (PresentationInfo::order_t n) const
}
boost::shared_ptr<Stripable>
-Session::get_nth_stripable (PresentationInfo::order_t n) const
-{
- StripableList sl;
-
- get_stripables (sl);
-
- for (StripableList::const_iterator s = sl.begin(); s != sl.end(); ++s) {
- if ((*s)->presentation_info().order() == n) {
- return *s;
- }
- }
-
- /* there is no nth stripable */
-
- return boost::shared_ptr<Stripable>();
-}
-
-boost::shared_ptr<Stripable>
Session::get_remote_nth_stripable (PresentationInfo::order_t n, PresentationInfo::Flag flags) const
{
StripableList sl;