summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-03 18:39:09 +0000
committerDavid Robillard <d@drobilla.net>2007-07-03 18:39:09 +0000
commit133a66920bbdd3bc11bd4ae866048b0f1f52ecd4 (patch)
treeaee991080adccaee612643ef3c06787774353346 /libs/ardour/processor.cc
parent0da29770276604a7f0a367cd8eb5ff2fff7a2233 (diff)
s/ParamID/Parameter/
git-svn-id: svn://localhost/ardour2/trunk@2098 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 76c780f2db..cbbbb374fb 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -157,7 +157,7 @@ Processor::state (bool full_state)
XMLNode& automation = Automatable::get_automation_state();
- for (set<ParamID>::iterator x = _visible_controls.begin(); x != _visible_controls.end(); ++x) {
+ for (set<Parameter>::iterator x = _visible_controls.begin(); x != _visible_controls.end(); ++x) {
if (x != _visible_controls.begin()) {
sstr << ' ';
}
@@ -195,7 +195,7 @@ Processor::set_state (const XMLNode& node)
if ((prop = (*niter)->property ("path")) != 0) {
old_set_automation_state (*(*niter));
} else {
- set_automation_state (*(*niter), ParamID(PluginAutomation));
+ set_automation_state (*(*niter), Parameter(PluginAutomation));
}
if ((prop = (*niter)->property ("visible")) != 0) {
@@ -211,7 +211,7 @@ Processor::set_state (const XMLNode& node)
break;
}
// FIXME: other automation types?
- mark_automation_visible (ParamID(PluginAutomation, what), true);
+ mark_automation_visible (Parameter(PluginAutomation, what), true);
}
}