Mercurial > hg > svcore
diff data/model/SparseTimeValueModel.h @ 1126:39019ce29178 tony-2.0-integration
Merge through to branch for Tony 2.0
author | Chris Cannam |
---|---|
date | Thu, 20 Aug 2015 14:54:21 +0100 |
parents | 1517d4c60e88 |
children | 48e9f538e6e9 |
line wrap: on
line diff
--- a/data/model/SparseTimeValueModel.h Fri Aug 14 18:16:14 2015 +0100 +++ b/data/model/SparseTimeValueModel.h Thu Aug 20 14:54:21 2015 +0100 @@ -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;