summaryrefslogtreecommitdiff
path: root/libs/ardour/muteable.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-20 16:10:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-20 16:10:11 -0400
commit52d746c5fb39263a42dd33de12e101c3fbeafaa9 (patch)
tree70a7db99a454b0d77ef0239684719da2f8ad5f67 /libs/ardour/muteable.cc
parent316562ee9e04edccff6de5f97618cbd59ef12755 (diff)
MuteMaster should (a) use a Muteable's own ::muted_by_others_soloing() (b) not try to use its own _solo_ignore to track Muteable::can_solo() or solo isolate state
Diffstat (limited to 'libs/ardour/muteable.cc')
-rw-r--r--libs/ardour/muteable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/muteable.cc b/libs/ardour/muteable.cc
index 9d434888bf..c94b55a683 100644
--- a/libs/ardour/muteable.cc
+++ b/libs/ardour/muteable.cc
@@ -22,6 +22,6 @@
using namespace ARDOUR;
Muteable::Muteable (Session& s, std::string const & name)
- : _mute_master (new MuteMaster (s, name))
+ : _mute_master (new MuteMaster (s, *this, name))
{
}