Mercurial > hg > svgui
diff layer/Colour3DPlotLayer.cpp @ 1417:2487521e857b
Merge
author | Chris Cannam |
---|---|
date | Wed, 23 Jan 2019 14:44:16 +0000 |
parents | fa986b91d77f |
children | 8e40faa56ffd |
line wrap: on
line diff
--- a/layer/Colour3DPlotLayer.cpp Mon Jan 21 10:08:26 2019 +0000 +++ b/layer/Colour3DPlotLayer.cpp Wed Jan 23 14:44:16 2019 +0000 @@ -43,7 +43,7 @@ Colour3DPlotLayer::Colour3DPlotLayer() : - m_model(0), + m_model(nullptr), m_colourScale(ColourScaleType::Linear), m_colourScaleSet(false), m_colourMap(0), @@ -59,7 +59,7 @@ m_miny(0), m_maxy(0), m_synchronous(false), - m_peakCache(0), + m_peakCache(nullptr), m_peakCacheDivisor(8) { QSettings settings; @@ -162,7 +162,7 @@ if (m_peakCache) m_peakCache->aboutToDelete(); delete m_peakCache; - m_peakCache = 0; + m_peakCache = nullptr; invalidateRenderers(); invalidateMagnitudes(); @@ -185,7 +185,7 @@ //!!! should do this only if the range is visible if (m_peakCache) m_peakCache->aboutToDelete(); delete m_peakCache; - m_peakCache = 0; + m_peakCache = nullptr; invalidateRenderers(); invalidateMagnitudes(); @@ -460,7 +460,7 @@ if (name == "Gain") { return new LinearRangeMapper(-50, 50, -25, 25, tr("dB")); } - return 0; + return nullptr; } void @@ -750,7 +750,7 @@ RangeMapper * Colour3DPlotLayer::getNewVerticalZoomRangeMapper() const { - if (!m_model) return 0; + if (!m_model) return nullptr; return new LinearRangeMapper(0, m_model->getHeight(), 0, m_model->getHeight(), ""); @@ -1020,7 +1020,7 @@ Colour3DPlotRenderer::Sources sources; sources.verticalBinLayer = this; - sources.fft = 0; + sources.fft = nullptr; sources.source = m_model; sources.peakCaches.push_back(getPeakCache());