class name change to clearly disambiguate Evoral::ControlList (a list of time/value pairs) from lists of Controls in libardour

This commit is contained in:
Paul Davis
2023-07-19 17:24:45 -06:00
parent af2e0e279c
commit 2bbf06c8cc
22 changed files with 55 additions and 55 deletions

View File

@@ -923,8 +923,8 @@ PluginInsert::connect_and_run (BufferSet& bufs, samplepos_t start, samplepos_t e
bufs.set_count(ChanCount::max(bufs.count(), _configured_out));
if (with_auto) {
std::shared_ptr<ControlList const> cl = _automated_controls.reader ();
for (ControlList::const_iterator ci = cl->begin(); ci != cl->end(); ++ci) {
std::shared_ptr<AutomationControlList const> cl = _automated_controls.reader ();
for (AutomationControlList::const_iterator ci = cl->begin(); ci != cl->end(); ++ci) {
AutomationControl& c = *(ci->get());
std::shared_ptr<const Evoral::ControlList> clist (c.list());
/* we still need to check for Touch and Latch */