diff data/model/SparseTimeValueModel.h @ 1111:457a1a619c5f simple-fft-model

Merge from default branch
author Chris Cannam
date Wed, 07 Jan 2015 17:42:21 +0000
parents 1517d4c60e88
children 48e9f538e6e9
line wrap: on
line diff
--- a/data/model/SparseTimeValueModel.h	Tue Jun 30 10:26:23 2015 +0100
+++ b/data/model/SparseTimeValueModel.h	Wed Jan 07 17:42:21 2015 +0000
@@ -29,13 +29,13 @@
 struct TimeValuePoint
 {
 public:
-    TimeValuePoint(long _frame) : frame(_frame), value(0.0f) { }
-    TimeValuePoint(long _frame, float _value, QString _label) : 
+    TimeValuePoint(sv_frame_t _frame) : frame(_frame), value(0.0f) { }
+    TimeValuePoint(sv_frame_t _frame, float _value, QString _label) : 
 	frame(_frame), value(_value), label(_label) { }
 
     int getDimensions() const { return 2; }
     
-    long frame;
+    sv_frame_t frame;
     float value;
     QString label;