diff data/fileio/MIDIFileReader.cpp @ 1643:7a23dfe65d66 single-point

Update NoteModel to use EventSeries. This is incomplete and won't provide enough to update svgui for it yet; must also refactor to avoid duplication of nasty APIs when updating the rest of the models
author Chris Cannam
date Wed, 13 Mar 2019 14:50:10 +0000
parents 70e172e6cc59
children 513192aa9b03
line wrap: on
line diff
--- a/data/fileio/MIDIFileReader.cpp	Wed Mar 13 14:46:54 2019 +0000
+++ b/data/fileio/MIDIFileReader.cpp	Wed Mar 13 14:50:10 2019 +0000
@@ -1027,8 +1027,8 @@
 
                     float level = float((*i)->getVelocity()) / 128.f;
 
-                    Note note(startFrame, (*i)->getPitch(),
-                              endFrame - startFrame, level, noteLabel);
+                    Event note(startFrame, (*i)->getPitch(),
+                               endFrame - startFrame, level, noteLabel);
 
 //                    SVDEBUG << "Adding note " << startFrame << "," << (endFrame-startFrame) << " : " << int((*i)->getPitch()) << endl;