mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-21 21:06:03 +01:00
remove new functions that are not actually used
This commit is contained in:
parent
4867ed49da
commit
4a827ef7ee
2 changed files with 0 additions and 14 deletions
|
|
@ -388,7 +388,6 @@ public:
|
|||
std::shared_ptr<Route> get_remote_nth_route (PresentationInfo::order_t n) const;
|
||||
std::shared_ptr<Route> route_by_selected_count (uint32_t cnt) const;
|
||||
void routes_using_input_from (const std::string& str, RouteList& rl);
|
||||
void find_matching_stripables_by_partial_name (std::string const & partial, std::vector<std::string>&) const;
|
||||
|
||||
bool route_name_unique (std::string) const;
|
||||
bool route_name_internal (std::string) const;
|
||||
|
|
|
|||
|
|
@ -4483,19 +4483,6 @@ Session::stripable_by_name (string name) const
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
void
|
||||
Session::find_matching_stripables_by_partial_name (std::string const & partial, std::vector<std::string>& matches) const
|
||||
{
|
||||
StripableList sl;
|
||||
get_stripables (sl);
|
||||
|
||||
for (auto & s : sl) {
|
||||
if (s->name().find (partial) == 0) {
|
||||
matches.push_back (s->name());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
std::shared_ptr<Route>
|
||||
Session::route_by_id (PBD::ID id) const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue