From 031dce4ba41d1fa9148a5c055ee1d0aff10ab6ac Mon Sep 17 00:00:00 2001 From: John Emmas Date: Fri, 7 Jan 2022 10:29:31 +0000 Subject: [PATCH] Minor fix to commit #45df39bd0ea from yesterday class 'AutomatableSequence' was trying to access a member that's private to its base class --- libs/ardour/ardour/automatable_sequence.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/automatable_sequence.h b/libs/ardour/ardour/automatable_sequence.h index f0da178eb4..6366c1b46c 100644 --- a/libs/ardour/ardour/automatable_sequence.h +++ b/libs/ardour/ardour/automatable_sequence.h @@ -38,7 +38,7 @@ public: AutomatableSequence(const AutomatableSequence& other) : Evoral::ControlSet(other) - , Automatable(other._a_session, other._time_domain) + , Automatable(other._a_session, other.time_domain()) , Evoral::Sequence(other) {}