summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vca_master_strip.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-02-29 14:45:03 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:38 -0400
commit33e56e58d7b60232d7024368aed4026a6f07a7d1 (patch)
tree3f50b5e6904388ce5233347b65016ceb91a7451c /gtk2_ardour/vca_master_strip.h
parentf44cac5cc60c0ad93da3a44db2517f09cc82f345 (diff)
initial part of vca assignment via context menu
Diffstat (limited to 'gtk2_ardour/vca_master_strip.h')
-rw-r--r--gtk2_ardour/vca_master_strip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/vca_master_strip.h b/gtk2_ardour/vca_master_strip.h
index cef7290b9a..5043c6144e 100644
--- a/gtk2_ardour/vca_master_strip.h
+++ b/gtk2_ardour/vca_master_strip.h
@@ -39,9 +39,10 @@ class VCAMasterStrip : public AxisView, public Gtk::VBox
std::string name() const;
std::string state_id() const { return "VCAMasterStrip"; }
+ boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
private:
- boost::shared_ptr<ARDOUR::VCA> vca;
+ boost::shared_ptr<ARDOUR::VCA> _vca;
ArdourButton name_button;
ArdourButton active_button;
GainMeter gain_meter;