plugin-pin management.. nearly there
[ardour.git] / libs / ardour / port_manager.cc
index 5b8693e5488a49b7ef11e4e2a02d49f52cadc82d..874d36d8828ae19730fa968046d25449aa490f22 100644 (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.
  */