summaryrefslogtreecommitdiff
path: root/libs/ardour/automatable.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-05 01:43:30 +0000
committerDavid Robillard <d@drobilla.net>2007-07-05 01:43:30 +0000
commit0c3944f7ddce5272a35dbb05462b7e086aa5a149 (patch)
treea22e7c90136f9f7344deb522a19da0dd9ca63da2 /libs/ardour/automatable.cc
parent912346057c44f53b7a07a03a66656bb67b86add6 (diff)
Replace remaining references to 'param_id' (with 'parameter').
git-svn-id: svn://localhost/ardour2/trunk@2109 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/automatable.cc')
-rw-r--r--libs/ardour/automatable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/automatable.cc b/libs/ardour/automatable.cc
index 14bccba056..5b30877edc 100644
--- a/libs/ardour/automatable.cc
+++ b/libs/ardour/automatable.cc
@@ -294,7 +294,7 @@ Automatable::set_automation_state (const XMLNode& node, Parameter legacy_param)
if (!id_prop) {
warning << "AutomationList node without automation-id property, "
<< "using default: " << legacy_param.to_string() << endmsg;
- al->set_param_id(legacy_param);
+ al->set_parameter(legacy_param);
}
boost::shared_ptr<AutomationControl> existing = control(param);