From cbdf686e391bc2e7b93f37a5d3fa9197cb178078 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 Aug 2006 07:15:30 +0000 Subject: - Replaced integer port counts (and input/output maximum/minimum) with ChanCount, which can count multiple types and does the reasonable thing for all comparison operators - Removed the fader/meters from MIDI mixer strips, at least until they do something - Made the Add Route dialog refuse to create MIDI busses, Spifftacular warning dialog and all Changes a bit more widespread than I was hoping, but worked out really well - lots of code will continue to work fine even when multi-typed (eg instrument) IOs come around, just ignoring the types it doesn't care about. Most all changes related to counts are little search/replace deals, logic doesn't need to change. Hopefully SVN can handle (automatic) merging with the other SoC projects if the buffer change goes as well. Next step: do for buffers what the last two commits did for ports. git-svn-id: svn://localhost/ardour2/branches/midi@787 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/port_set.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/port_set.cc') diff --git a/libs/ardour/port_set.cc b/libs/ardour/port_set.cc index 22fb032c09..31f06cb139 100644 --- a/libs/ardour/port_set.cc +++ b/libs/ardour/port_set.cc @@ -42,9 +42,9 @@ PortSet::add_port(Port* port) v.push_back(port); sort(v.begin(), v.end(), sort_ports_by_name); - _chan_count.set_count(port->type(), _chan_count.get_count(port->type()) + 1); + _chan_count.set(port->type(), _chan_count.get(port->type()) + 1); - assert(_chan_count.get_count(port->type()) == _ports[port->type().to_index()].size()); + assert(_chan_count.get(port->type()) == _ports[port->type().to_index()].size()); } -- cgit v1.2.3