aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/diveplannermodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index 5e8f330c7..82aeda388 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -583,14 +583,14 @@ void DivePlannerPointsModel::setDecoMode(int mode)
auto planner = SettingsObjectWrapper::instance()->planner_settings;
planner->setDecoMode(deco_mode(mode));
emit recreationChanged(mode == int(prefs.planner_deco_mode));
- emit dataChanged(createIndex(0, 0), createIndex(rowCount() - 1, COLUMNS -1));
+ emitDataChanged();
}
void DivePlannerPointsModel::setSafetyStop(bool value)
{
auto planner = SettingsObjectWrapper::instance()->planner_settings;
planner->setSafetyStop(value);
- emit dataChanged(createIndex(0, 0), createIndex(rowCount() - 1, COLUMNS -1));
+ emitDataChanged();
}
void DivePlannerPointsModel::setReserveGas(int reserve)