remove unused PortManager::port_name_prefix_is_unique() method

This commit is contained in:
Paul Davis 2015-10-09 07:39:08 -04:00
parent 6bcbace73a
commit 268d53f502
2 changed files with 0 additions and 23 deletions

View File

@ -80,7 +80,6 @@ class LIBARDOUR_API PortManager
std::string make_port_name_non_relative (const std::string& name) const;
std::string get_pretty_name_by_name (const std::string& portname) const;
bool port_is_mine (const std::string& fullname) const;
bool port_name_prefix_is_unique (const std::string& first_part_of_port_name) const;
/* other Port management */

View File

@ -192,28 +192,6 @@ PortManager::n_physical_inputs () const
return _backend->n_physical_inputs ();
}
bool
PortManager::port_name_prefix_is_unique (const string& first_part_of_port_name) const
{
if (!_backend) {
return boost::shared_ptr<Port>();
}
boost::shared_ptr<const Ports> pr = ports.reader();
const string::size_type len = first_part_of_port_name.length();
for (Ports::const_iterator x = pr->begin(); x != pr->end(); ++x) {
string prefix = x->first.substr (0, len);
if (strings_equal_ignore_case (prefix, first_part_of_port_name)) {
return false;
}
}
return true;
}
/** @param name Full or short name of port
* @return Corresponding Port or 0.
*/