summaryrefslogtreecommitdiff
path: root/libs/ardour/vca.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-25 12:49:53 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:38 -0400
commitcfc55e392ff4a6c551897a64a92f93a8982dc34d (patch)
tree9e047710780209ea2c69dd1ab5bdc2c3dc574fc7 /libs/ardour/vca.cc
parentf5c717e893a7def1cee70238cc7b9f55e1ff0b0e (diff)
add name() method to VCA
Diffstat (limited to 'libs/ardour/vca.cc')
-rw-r--r--libs/ardour/vca.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/vca.cc b/libs/ardour/vca.cc
index 7580d5794a..2ba8b8c7c4 100644
--- a/libs/ardour/vca.cc
+++ b/libs/ardour/vca.cc
@@ -27,7 +27,7 @@ using std::string;
VCA::VCA (Session& s, const string& n)
: SessionHandleRef (s)
- , name (n)
+ , _name (n)
, _control (new GainControl (s, Evoral::Parameter (GainAutomation), boost::shared_ptr<AutomationList> ()))
{
}