change Controllable::set_value() API to include grouped control consideration.
[ardour.git] / libs / ardour / monitor_processor.cc
index 92beed547ccd0d3f814bb26f1b573cdb86a88a6b..4264ee77934c9af0b7667a4a9733fbf0f654db2b 100644 (file)
@@ -37,7 +37,7 @@ using namespace std;
 /* specialize for bool because of set_value() semantics */
 
 namespace ARDOUR {
-        template<> void MPControl<bool>::set_value (double v) {
+       template<> void MPControl<bool>::set_value (double v, PBD::Controllable::GroupControlDisposition /*group_override*/) {
                 bool newval = fabs (v) >= 0.5;
                 if (newval != _value) {
                         _value = newval;