From 72f6f9bcbaefb36ecfca29b43089fbbdbf3bb234 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 5 Feb 2015 16:20:34 -0500 Subject: [PATCH] add SessionEvent::Action to libs/ardour enums registration --- libs/ardour/enums.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libs/ardour/enums.cc b/libs/ardour/enums.cc index c5b96ec2c3..fad076e681 100644 --- a/libs/ardour/enums.cc +++ b/libs/ardour/enums.cc @@ -85,6 +85,7 @@ setup_enum_writer () ShuttleUnits _ShuttleUnits; Session::RecordState _Session_RecordState; SessionEvent::Type _SessionEvent_Type; + SessionEvent::Action _SessionEvent_Action; TimecodeFormat _Session_TimecodeFormat; Session::PullupFormat _Session_PullupFormat; FadeShape _FadeShape; @@ -387,6 +388,12 @@ setup_enum_writer () REGISTER_CLASS_ENUM (SessionEvent, AutoLoopDeclick); REGISTER (_SessionEvent_Type); + REGISTER_CLASS_ENUM (SessionEvent, Add); + REGISTER_CLASS_ENUM (SessionEvent, Remove); + REGISTER_CLASS_ENUM (SessionEvent, Replace); + REGISTER_CLASS_ENUM (SessionEvent, Clear); + REGISTER (_SessionEvent_Action); + REGISTER_CLASS_ENUM (Session, Stopped); REGISTER_CLASS_ENUM (Session, Waiting); REGISTER_CLASS_ENUM (Session, Running);