add SessionEvent::Action to libs/ardour enums registration

This commit is contained in:
Paul Davis 2015-02-05 16:20:34 -05:00
parent 6790f8342a
commit ec9c6a58e2

View file

@ -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;
@ -382,6 +383,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);