Revert "change return type of AutomationControl::actually_set_value() from void to...
[ardour.git] / libs / ardour / mute_control.cc
index 1b7f0f08f84741a157079429e37b44cec24fd1db..5b38547366778081b9a479abf216780f1d869fca 100644 (file)
@@ -74,7 +74,7 @@ MuteControl::pre_remove_master (boost::shared_ptr<AutomationControl> m)
        }
 }
 
-bool
+void
 MuteControl::actually_set_value (double val, Controllable::GroupControlDisposition gcd)
 {
        if (muted_by_self() != bool (val)) {
@@ -86,7 +86,7 @@ MuteControl::actually_set_value (double val, Controllable::GroupControlDispositi
                _muteable.act_on_mute ();
        }
 
-       return SlavableAutomationControl::actually_set_value (val, gcd);
+       SlavableAutomationControl::actually_set_value (val, gcd);
 }
 
 void