Remove some unused methods. Restore Solo boost, SiP cut and Dim Cut correctly on...
[ardour.git] / libs / ardour / ardour / monitor_processor.h
index 0f23d7029fc91c1c5a1fd221f267369bfa6e149b..d394ab0b819929e7d3c8585d8ab2bd566f5bec82 100644 (file)
@@ -48,7 +48,7 @@ template<typename T> class MPControl : public PBD::Controllable {
         
         /* Controllable API */
         
-        void set_value (double v) { 
+        void set_value (double v) {
                 T newval = (T) v;
                 if (newval != _value) {
                         _value = newval;
@@ -110,7 +110,7 @@ class MonitorProcessor : public Processor
 
         bool display_to_user() const;
 
-       void run (BufferSet& /*bufs*/, framepos_t /*start_frame*/, framepos_t /*end_frame*/, nframes_t /*nframes*/, bool /*result_required*/);
+       void run (BufferSet& /*bufs*/, framepos_t /*start_frame*/, framepos_t /*end_frame*/, pframes_t /*nframes*/, bool /*result_required*/);
 
         XMLNode& state (bool full);
         int set_state (const XMLNode&, int /* version */);
@@ -126,9 +126,6 @@ class MonitorProcessor : public Processor
         void set_solo (uint32_t, bool);
         void set_mono (bool);
 
-        void set_dim_level (gain_t);
-        void set_solo_boost_level (gain_t);
-
         gain_t dim_level() const { return _dim_level; }
         gain_t solo_boost_level() const { return _solo_boost_level; }