summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-models/diveplannermodel.cpp6
-rw-r--r--qt-models/diveplannermodel.h1
2 files changed, 1 insertions, 6 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index b51e45a05..79d1280d5 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -109,11 +109,9 @@ void DivePlannerPointsModel::loadFromDive(dive *dIn)
int depthsum = 0;
int samplecount = 0;
o2pressure_t last_sp;
- bool oldRec = recalc;
struct divecomputer *dc = &(d->dc);
const struct event *evd = NULL;
enum divemode_t current_divemode = UNDEF_COMP_TYPE;
- recalc = false;
cylinders.updateDive(d);
duration_t lasttime = { 0 };
duration_t lastrecordedtime = {};
@@ -177,7 +175,6 @@ void DivePlannerPointsModel::loadFromDive(dive *dIn)
current_divemode = get_current_divemode(dc, d->dc.duration.seconds, &evd, &current_divemode);
if (!hasMarkedSamples && !dc->last_manual_time.seconds)
addStop(0, d->dc.duration.seconds,cylinderid, last_sp.mbar, true, current_divemode);
- recalc = oldRec;
DiveTypeSelectionModel::instance()->repopulate();
preserved_until = d->duration;
@@ -450,8 +447,7 @@ int DivePlannerPointsModel::rowCount(const QModelIndex&) const
DivePlannerPointsModel::DivePlannerPointsModel(QObject *parent) : QAbstractTableModel(parent),
d(nullptr),
cylinders(true),
- mode(NOTHING),
- recalc(true)
+ mode(NOTHING)
{
memset(&diveplan, 0, sizeof(diveplan));
startTime.setTimeSpec(Qt::UTC);
diff --git a/qt-models/diveplannermodel.h b/qt-models/diveplannermodel.h
index f0ec195e6..52abd4bd6 100644
--- a/qt-models/diveplannermodel.h
+++ b/qt-models/diveplannermodel.h
@@ -132,7 +132,6 @@ private:
struct dive *d;
CylindersModel cylinders;
Mode mode;
- bool recalc;
QVector<divedatapoint> divepoints;
QDateTime startTime;
int instanceCounter = 0;