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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user