summaryrefslogtreecommitdiff
path: root/libs/ardour/solo_control.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-21 12:44:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:44 -0400
commitf022784014d4ae1b3bb75a1c02f206ba8a28d7d6 (patch)
tree7582499a02aa75b8d7c2c7a8173daa2b1ba54302 /libs/ardour/solo_control.cc
parent2380bbae5bd77e39020ef779f1ae4a3255ca1e8a (diff)
convert editor routes code to use Stripable
Diffstat (limited to 'libs/ardour/solo_control.cc')
-rw-r--r--libs/ardour/solo_control.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/solo_control.cc b/libs/ardour/solo_control.cc
index f0dd07d628..9cf3c20599 100644
--- a/libs/ardour/solo_control.cc
+++ b/libs/ardour/solo_control.cc
@@ -328,3 +328,9 @@ SoloControl::pre_remove_master (boost::shared_ptr<AutomationControl> m)
_transition_into_solo = 0;
}
}
+
+bool
+SoloControl::can_solo () const
+{
+ return _soloable.can_solo ();
+}