mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
Fix Windows builds (amend 7009ff03)
This commit is contained in:
parent
7e3a286627
commit
ffcb0af8bc
2 changed files with 6 additions and 1 deletions
|
|
@ -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*>
|
||||
|
|
|
|||
|
|
@ -147,6 +147,7 @@ CLASSINFO(MarkerSelection);
|
|||
CLASSINFO(PublicEditor);
|
||||
CLASSINFO(RegionSelection);
|
||||
CLASSINFO(RegionView);
|
||||
CLASSINFO(StripableTimeAxisView);
|
||||
CLASSINFO(RouteTimeAxisView);
|
||||
CLASSINFO(RouteUI);
|
||||
CLASSINFO(Selectable);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue