From d837914e28c659bc190c7a96ae4ba250bfcd1c04 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 24 Apr 2017 04:08:53 +0200 Subject: [PATCH] Swap inheritance, simplifies Lua Bindings --- libs/ardour/ardour/automation_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/automation_list.h b/libs/ardour/ardour/automation_list.h index 2cd517a342..ca72f5f01f 100644 --- a/libs/ardour/ardour/automation_list.h +++ b/libs/ardour/ardour/automation_list.h @@ -65,7 +65,7 @@ private: * It includes session-specifics (such as automation state), control logic (e.g. touch, signals) * and acts as proxy to the underlying ControlList which holds the actual data. */ -class LIBARDOUR_API AutomationList : public PBD::StatefulDestructible, public Evoral::ControlList +class LIBARDOUR_API AutomationList : public Evoral::ControlList, public PBD::StatefulDestructible { public: AutomationList (const Evoral::Parameter& id, const Evoral::ParameterDescriptor& desc);