X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Flua_api.cc;h=001ddc11bf2ffb798693be7c178a49a6b712f7bc;hb=dec10f2f3c6fffe27e72243d9bf36713d8f084f9;hp=edfbfd44fa172ade6e5450c67340de6ee13c48a9;hpb=30b087ab3d28f1585987fa3f6ae006562ae192e3;p=ardour.git diff --git a/libs/ardour/lua_api.cc b/libs/ardour/lua_api.cc index edfbfd44fa..001ddc11bf 100644 --- a/libs/ardour/lua_api.cc +++ b/libs/ardour/lua_api.cc @@ -815,16 +815,16 @@ LuaAPI::Vamp::process (const std::vector& d, ::Vamp::RealTime rt) return _plugin->process (bufs, rt); } -boost::shared_ptr > -LuaAPI::new_noteptr (uint8_t chan, Evoral::Beats beat_time, Evoral::Beats length, uint8_t note, uint8_t velocity) +boost::shared_ptr > +LuaAPI::new_noteptr (uint8_t chan, Temporal::Beats beat_time, Temporal::Beats length, uint8_t note, uint8_t velocity) { - return boost::shared_ptr > (new Evoral::Note(chan, beat_time, length, note, velocity)); + return boost::shared_ptr > (new Evoral::Note(chan, beat_time, length, note, velocity)); } -std::list > > +std::list > > LuaAPI::note_list (boost::shared_ptr mm) { - typedef boost::shared_ptr > NotePtr; + typedef boost::shared_ptr > NotePtr; std::list note_ptr_list;