From 7eb2d1d16de5d52175485bdd1a6acc53019fdb22 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 17 May 2016 11:42:04 -0400 Subject: [PATCH] make ::muted_by_others_soloing() part of the Muteable API --- libs/ardour/ardour/muteable.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/ardour/muteable.h b/libs/ardour/ardour/muteable.h index 57db66b1ee..adc4259a31 100644 --- a/libs/ardour/ardour/muteable.h +++ b/libs/ardour/ardour/muteable.h @@ -35,6 +35,7 @@ class Muteable { virtual bool can_be_muted_by_others () const = 0; virtual void act_on_mute () {} + virtual bool muted_by_others_soloing () const = 0; boost::shared_ptr mute_master() const { return _mute_master;