Remove some unused methods. Restore Solo boost, SiP cut and Dim Cut correctly on session reload (#3903).

git-svn-id: svn://localhost/ardour2/branches/3.0@9243 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-03-30 12:37:14 +00:00
parent 832e6fb21a
commit a8b4169cce
5 changed files with 4 additions and 24 deletions

View 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;
@ -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; }

View file

@ -404,18 +404,6 @@ MonitorProcessor::display_to_user () const
return false;
}
void
MonitorProcessor::set_dim_level (gain_t val)
{
_dim_level = val;
}
void
MonitorProcessor::set_solo_boost_level (gain_t val)
{
_solo_boost_level = val;
}
bool
MonitorProcessor::soloed (uint32_t chn) const
{