Mercurial > hg > svgui
changeset 825:f7590917177c tonioni
Merge from default branch
author | Chris Cannam |
---|---|
date | Fri, 18 Jul 2014 11:07:40 +0100 |
parents | 22fe9bcb7206 (current diff) 2d4af227fd32 (diff) |
children | 43256b925e15 |
files | |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/layer/Colour3DPlotLayer.cpp Fri Jul 18 11:07:13 2014 +0100 +++ b/layer/Colour3DPlotLayer.cpp Fri Jul 18 11:07:40 2014 +0100 @@ -78,8 +78,8 @@ connectSignals(m_model); connect(m_model, SIGNAL(modelChanged()), this, SLOT(modelChanged())); - connect(m_model, SIGNAL(modelChanged(int, int)), - this, SLOT(modelChanged(int, int))); + connect(m_model, SIGNAL(modelChangedWithin(int, int)), + this, SLOT(modelChangedWithin(int, int))); m_peakResolution = 256; if (model->getResolution() > 512) { @@ -135,7 +135,7 @@ } void -Colour3DPlotLayer::modelChanged(int startFrame, int endFrame) +Colour3DPlotLayer::modelChangedWithin(int startFrame, int endFrame) { if (!m_colourScaleSet && m_colourScale == LinearScale) { if (m_model && m_model->getWidth() > 50) {
--- a/layer/Colour3DPlotLayer.h Fri Jul 18 11:07:13 2014 +0100 +++ b/layer/Colour3DPlotLayer.h Fri Jul 18 11:07:40 2014 +0100 @@ -168,7 +168,7 @@ void cacheInvalid(); void cacheInvalid(int startFrame, int endFrame); void modelChanged(); - void modelChanged(int, int); + void modelChangedWithin(int, int); protected: const DenseThreeDimensionalModel *m_model; // I do not own this