X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fmidi_model.cc;h=21bb0bb1146afdbe43913a771219f8a6035a557d;hb=8cf323c15df3af076a7e69a4b24c5cb6329477c6;hp=13268cd84ad9c270896be0e94d278333d0910586;hpb=adc4bfd5dbfb4c5c6de4ce0f791f2fb4cd603d8a;p=ardour.git diff --git a/libs/ardour/midi_model.cc b/libs/ardour/midi_model.cc index 13268cd84a..21bb0bb114 100644 --- a/libs/ardour/midi_model.cc +++ b/libs/ardour/midi_model.cc @@ -561,7 +561,7 @@ MidiModel::NoteDiffCommand::unmarshal_change (XMLNode *xml_change) } int old_val; - Evoral::Beats old_time; + Temporal::Beats old_time; if ((change.property == StartTime || change.property == Length) && xml_change->get_property ("old", old_time)) { change.old_value = old_time; @@ -573,7 +573,7 @@ MidiModel::NoteDiffCommand::unmarshal_change (XMLNode *xml_change) } int new_val; - Evoral::Beats new_time; + Temporal::Beats new_time; if ((change.property == StartTime || change.property == Length) && xml_change->get_property ("new", new_time)) { change.new_value = new_time; @@ -1113,7 +1113,7 @@ MidiModel::PatchChangeDiffCommand::unmarshal_patch_change (XMLNode* n) assert(false); } - Evoral::Beats time = Evoral::Beats(); + Temporal::Beats time = Temporal::Beats(); if (!n->get_property ("time", time)) { // warning?? } @@ -1832,7 +1832,7 @@ MidiModel::transpose (NoteDiffCommand* c, const NotePtr note_ptr, int semitones) void MidiModel::control_list_marked_dirty () { - AutomatableSequence::control_list_marked_dirty (); + AutomatableSequence::control_list_marked_dirty (); ContentsChanged (); /* EMIT SIGNAL */ }