mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
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:
parent
2bbf06c8cc
commit
e430b54554
2 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue