Mercurial > hg > svcore
diff data/model/ImageModel.h @ 1110:1517d4c60e88
Fix a number of warnings in the 32-bit build
author | Chris Cannam |
---|---|
date | Wed, 01 Jul 2015 15:53:54 +0100 |
parents | 57633d605547 |
children | 48e9f538e6e9 |
line wrap: on
line diff
--- a/data/model/ImageModel.h Fri Jun 12 12:41:19 2015 +0100 +++ b/data/model/ImageModel.h Wed Jul 01 15:53:54 2015 +0100 @@ -31,13 +31,13 @@ struct ImagePoint : public XmlExportable { public: - ImagePoint(long _frame) : frame(_frame) { } - ImagePoint(long _frame, QString _image, QString _label) : + ImagePoint(sv_frame_t _frame) : frame(_frame) { } + ImagePoint(sv_frame_t _frame, QString _image, QString _label) : frame(_frame), image(_image), label(_label) { } int getDimensions() const { return 1; } - long frame; + sv_frame_t frame; QString image; QString label;