mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix variable scope issue
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
e58f54cac1
commit
48e9257de4
1 changed files with 2 additions and 2 deletions
|
@ -227,6 +227,7 @@ DiveTemperatureItem::DiveTemperatureItem()
|
||||||
|
|
||||||
void DiveTemperatureItem::modelDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight)
|
void DiveTemperatureItem::modelDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight)
|
||||||
{
|
{
|
||||||
|
int last = -300, last_printed_temp = 0, sec = 0;
|
||||||
// We don't have enougth data to calculate things, quit.
|
// We don't have enougth data to calculate things, quit.
|
||||||
if (!shouldCalculateStuff(topLeft, bottomRight))
|
if (!shouldCalculateStuff(topLeft, bottomRight))
|
||||||
return;
|
return;
|
||||||
|
@ -235,12 +236,11 @@ void DiveTemperatureItem::modelDataChanged(const QModelIndex& topLeft, const QMo
|
||||||
texts.clear();
|
texts.clear();
|
||||||
// Ignore empty values. things do not look good with '0' as temperature in kelvin...
|
// Ignore empty values. things do not look good with '0' as temperature in kelvin...
|
||||||
QPolygonF poly;
|
QPolygonF poly;
|
||||||
int last = -300, last_printed_temp = 0, sec = 0;
|
|
||||||
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
|
for (int i = 0, modelDataCount = dataModel->rowCount(); i < modelDataCount; i++) {
|
||||||
int mkelvin = dataModel->index(i, vDataColumn).data().toInt();
|
int mkelvin = dataModel->index(i, vDataColumn).data().toInt();
|
||||||
if (!mkelvin)
|
if (!mkelvin)
|
||||||
continue;
|
continue;
|
||||||
int sec = dataModel->index(i, hDataColumn).data().toInt();
|
sec = dataModel->index(i, hDataColumn).data().toInt();
|
||||||
QPointF point( hAxis->posAtValue(sec), vAxis->posAtValue(mkelvin));
|
QPointF point( hAxis->posAtValue(sec), vAxis->posAtValue(mkelvin));
|
||||||
poly.append(point);
|
poly.append(point);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue