diff data/fileio/CSVFileReader.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/CSVFileReader.cpp	Wed Mar 13 14:46:54 2019 +0000
+++ b/data/fileio/CSVFileReader.cpp	Wed Mar 13 14:50:10 2019 +0000
@@ -453,8 +453,8 @@
             } else if (modelType == CSVFormat::TwoDimensionalModelWithDurationAndPitch) {
 
                 float level = ((value >= 0.f && value <= 1.f) ? value : 1.f);
-                NoteModel::Point point(frameNo, pitch, duration, level, label);
-                model2b->addPoint(point);
+                Event note(frameNo, pitch, duration, level, label);
+                model2b->addPoint(note);
 
             } else if (modelType == CSVFormat::ThreeDimensionalModel) {