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

This commit is contained in:
Paul Davis 2023-07-19 17:24:57 -06:00
parent 2bbf06c8cc
commit e430b54554
2 changed files with 6 additions and 6 deletions

View file

@ -6766,7 +6766,7 @@ Editor::toggle_solo ()
{
bool new_state = false;
bool first = true;
std::shared_ptr<ControlList> cl (new ControlList);
std::shared_ptr<AutomationControlList> cl (new AutomationControlList);
for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
StripableTimeAxisView *stav = dynamic_cast<StripableTimeAxisView *>(*i);
@ -6791,7 +6791,7 @@ Editor::toggle_mute ()
{
bool new_state = false;
bool first = true;
std::shared_ptr<ControlList> cl (new ControlList);
std::shared_ptr<AutomationControlList> cl (new AutomationControlList);
for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
StripableTimeAxisView *stav = dynamic_cast<StripableTimeAxisView *>(*i);