mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
Minor fix to commit #45df39bd0e from yesterday
class 'AutomatableSequence' was trying to access a member that's private to its base class
This commit is contained in:
parent
78b39284d8
commit
031dce4ba4
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ public:
|
|||
|
||||
AutomatableSequence(const AutomatableSequence<T>& other)
|
||||
: Evoral::ControlSet(other)
|
||||
, Automatable(other._a_session, other._time_domain)
|
||||
, Automatable(other._a_session, other.time_domain())
|
||||
, Evoral::Sequence<T>(other)
|
||||
{}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue