summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/session.h1
-rw-r--r--libs/ardour/session.cc15
2 files changed, 0 insertions, 16 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 43673aa0c2..43f0c95d98 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -328,7 +328,6 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
boost::shared_ptr<Stripable> get_remote_nth_stripable (PresentationInfo::order_t n, PresentationInfo::Flag) const;
boost::shared_ptr<Route> get_remote_nth_route (PresentationInfo::order_t n) const;
boost::shared_ptr<Route> route_by_selected_count (uint32_t cnt) const;
- boost::shared_ptr<Track> track_by_diskstream_id (PBD::ID) const;
void routes_using_input_from (const std::string& str, RouteList& rl);
bool route_name_unique (std::string) const;
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 28b99fd427..a46a63dce9 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -4534,21 +4534,6 @@ Session::processor_by_id (PBD::ID id) const
return boost::shared_ptr<Processor> ();
}
-boost::shared_ptr<Track>
-Session::track_by_diskstream_id (PBD::ID id) const
-{
- boost::shared_ptr<RouteList> r = routes.reader ();
-
- for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
- boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (*i);
- if (t && t->using_diskstream_id (id)) {
- return t;
- }
- }
-
- return boost::shared_ptr<Track> ();
-}
-
boost::shared_ptr<Route>
Session::get_remote_nth_route (PresentationInfo::order_t n) const
{