13
0

Tempo ramps - rebase fixes

This commit is contained in:
nick_m 2016-05-18 23:11:42 +10:00
parent 058b781258
commit e5ba2bc34c
2 changed files with 3 additions and 5 deletions

View File

@ -832,8 +832,8 @@ LuaBindings::common (lua_State* L)
.endClass ()
.beginClass <TempoMap> ("TempoMap")
.addFunction ("add_tempo", &TempoMap::add_tempo)
.addFunction ("add_meter", &TempoMap::add_meter)
//.addFunction ("add_tempo", &TempoMap::add_tempo)
//.addFunction ("add_meter", &TempoMap::add_meter)
.endClass ()
.beginClass <ChanCount> ("ChanCount")

View File

@ -79,7 +79,7 @@ TempoSection::TempoSection (const XMLNode& node)
, _active (true)
, _locked_to_meter (false)
{
const XMLProperty *prop;
XMLProperty const * prop;
LocaleGuard lg;
BBT_Time bbt;
double pulse;
@ -456,9 +456,7 @@ MeterSection::MeterSection (const XMLNode& node)
: MetricSection (0.0), Meter (TempoMap::default_meter())
{
XMLProperty const * prop;
BBT_Time start;
LocaleGuard lg;
const XMLProperty *prop;
BBT_Time bbt;
double pulse = 0.0;
double beat = 0.0;