NO-OP: Consistent API name
[ardour.git] / libs / ardour / ardour / proxy_controllable.h
index c60f5f1b74770756ce084bc5094cf34301cf3ede..e89cd17f0e32d29c04ce5f1d7925a9fbfa82f30f 100644 (file)
@@ -40,12 +40,9 @@ class LIBARDOUR_API ProxyControllable : public PBD::Controllable {
                , _getter (getter)
        {}
 
-       void set_value (double v, PBD::Controllable::GroupControlDisposition /*group_override*/) { if (_setter (v)) { Changed(); /* EMIT SIGNAL */ } }
+       void set_value (double v, PBD::Controllable::GroupControlDisposition gcd) { if (_setter (v)) { Changed (true, gcd); /* EMIT SIGNAL */ } }
        double get_value () const { return _getter (); }
 
-       double internal_to_user (double i) const { return accurate_coefficient_to_dB (i);}
-       double user_to_internal (double u) const { return dB_to_coefficient(u) ;}
-
        std::string get_user_string () const {
                char theBuf[32]; sprintf( theBuf, "%3.1f dB", accurate_coefficient_to_dB (get_value()));
                return std::string(theBuf);