Mercurial > hg > svgui
diff layer/TimeValueLayer.h @ 169:86cee2b060c7
* Fix slowness in serving FFT values to feature extraction plugin transform
(failure to call resume() on FFT model)
* Fix failure to update completion from time/value model
author | Chris Cannam |
---|---|
date | Tue, 17 Oct 2006 13:49:31 +0000 |
parents | 33929e0c3c6b |
children | 6b023411087b |
line wrap: on
line diff
--- a/layer/TimeValueLayer.h Tue Oct 17 13:04:49 2006 +0000 +++ b/layer/TimeValueLayer.h Tue Oct 17 13:49:31 2006 +0000 @@ -102,7 +102,7 @@ virtual bool isLayerEditable() const { return true; } - virtual int getCompletion() const { return m_model->getCompletion(); } + virtual int getCompletion(View *) const { return m_model->getCompletion(); } virtual bool needsTextLabelHeight() const { return m_plotStyle == PlotSegmentation && m_model->hasTextLabels();