Mercurial > hg > svgui
comparison layer/SpectrogramLayer.cpp @ 1019:25ec2390fad3 colourschemes
Convert 3d model column type from QVector to std::vector; replace another user of ResizeableBitset
author | Chris Cannam |
---|---|
date | Fri, 22 Jan 2016 13:39:45 +0000 |
parents | 9c890b7dfa83 |
children | 2bd5eb6a6c6b |
comparison
equal
deleted
inserted
replaced
1018:072f0db59081 | 1019:25ec2390fad3 |
---|---|
2600 m_normalization == NormalizeHybrid) { | 2600 m_normalization == NormalizeHybrid) { |
2601 for (int y = 0; y < h; ++y) { | 2601 for (int y = 0; y < h; ++y) { |
2602 if (c[y] > columnMax) columnMax = c[y]; | 2602 if (c[y] > columnMax) columnMax = c[y]; |
2603 } | 2603 } |
2604 } | 2604 } |
2605 values = c.constData() + minbin; | 2605 values = c.data() + minbin; |
2606 } | 2606 } |
2607 psx = sx; | 2607 psx = sx; |
2608 } | 2608 } |
2609 | 2609 |
2610 for (int y = 0; y < h; ++y) { | 2610 for (int y = 0; y < h; ++y) { |