Mercurial > hg > svgui
diff layer/SliceLayer.h @ 810:b68af2be4545 tonioni
Merge from branch warnfix_no_size_t
author | Chris Cannam |
---|---|
date | Wed, 18 Jun 2014 13:42:25 +0100 |
parents | 1d526ba11a24 |
children | b66fb15de477 |
line wrap: on
line diff
--- a/layer/SliceLayer.h Mon Jun 16 12:50:27 2014 +0100 +++ b/layer/SliceLayer.h Wed Jun 18 13:42:25 2014 +0100 @@ -115,10 +115,10 @@ virtual float getYForValue(float value, const View *v, float &norm) const; virtual float getValueForY(float y, const View *v) const; - virtual QString getFeatureDescription(View *v, QPoint &, - bool includeBinDescription, - int &minbin, int &maxbin, - int &range) const; + virtual QString getFeatureDescriptionAux(View *v, QPoint &, + bool includeBinDescription, + int &minbin, int &maxbin, + int &range) const; // This curve may, of course, be flat -- the spectrum uses it for // normalizing the fft results by the fft size (with 1/(fftsize/2) @@ -144,8 +144,8 @@ mutable std::map<const View *, int> m_xorigins; mutable std::map<const View *, int> m_yorigins; mutable std::map<const View *, int> m_heights; - mutable size_t m_currentf0; - mutable size_t m_currentf1; + mutable int m_currentf0; + mutable int m_currentf1; mutable std::vector<float> m_values; };