summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-08 15:53:32 +0200
committerRobin Gareus <robin@gareus.org>2016-04-08 18:16:23 +0200
commit8c81808db71df72507392dc68f9ca6233d96e35d (patch)
tree516d9fa06b1328c322fad8f1b85d8968d98686f6 /gtk2_ardour/processor_box.cc
parente27096b054cbaa5c58063f96ee64b3af3af3e7bd (diff)
GUI part of count/n_total API rename
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index ff6731e6e7..e980cd974c 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -1042,14 +1042,14 @@ ProcessorEntry::RoutingIcon::identity () const {
if (!_in_map.is_monotonic () || !_in_map.is_identity ()) {
return false;
}
- if (_in_map.count () != _sinks.n_total () || _in.n_total () != _sinks.n_total ()) {
+ if (_in_map.n_total () != _sinks.n_total () || _in.n_total () != _sinks.n_total ()) {
return false;
}
if (_feed) {
if (!_f_out_map.is_monotonic () || !_f_out_map.is_identity ()) {
return false;
}
- if (_f_out_map.count () != _f_sources.n_total () || _sinks != _f_sources) {
+ if (_f_out_map.n_total () != _f_sources.n_total () || _sinks != _f_sources) {
return false;
}
}
@@ -1061,10 +1061,10 @@ ProcessorEntry::RoutingIcon::out_identity () const {
if (!_out_map.is_monotonic () || !_out_map.is_identity ()) {
return false;
}
- if (_out_map.count () != _sources.n_total () || _out.n_total () != _sources.n_total ()) {
+ if (_out_map.n_total () != _sources.n_total () || _out.n_total () != _sources.n_total ()) {
return false;
}
- if (_thru_map.count () > 0) {
+ if (_thru_map.n_total () > 0) {
return false;
}
return true;