Fix Windows builds (amend 7009ff03)

This commit is contained in:
Robin Gareus 2017-08-07 13:58:56 +02:00
parent 7e3a286627
commit ffcb0af8bc
2 changed files with 6 additions and 1 deletions

View file

@ -628,6 +628,9 @@ LuaInstance::register_classes (lua_State* L)
.deriveClass <TimeAxisView, AxisView> ("TimeAxisView")
.endClass ()
.deriveClass <StripableTimeAxisView, TimeAxisView> ("StripableTimeAxisView")
.endClass ()
.beginClass <Selectable> ("Selectable")
.endClass ()
@ -641,7 +644,8 @@ LuaInstance::register_classes (lua_State* L)
.endClass ()
.deriveClass <RouteTimeAxisView, RouteUI> ("RouteTimeAxisView")
.addCast<TimeAxisView> ("to_timeaxisview")
.addCast<StripableTimeAxisView> ("to_stripabletimeaxisview")
.addCast<TimeAxisView> ("to_timeaxisview") // deprecated
.endClass ()
// std::list<Selectable*>

View file

@ -147,6 +147,7 @@ CLASSINFO(MarkerSelection);
CLASSINFO(PublicEditor);
CLASSINFO(RegionSelection);
CLASSINFO(RegionView);
CLASSINFO(StripableTimeAxisView);
CLASSINFO(RouteTimeAxisView);
CLASSINFO(RouteUI);
CLASSINFO(Selectable);