diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-09-02 22:26:19 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-07 11:03:30 -0700 |
commit | db57a633d587444a7196c8d4274b8f327e77ceba (patch) | |
tree | 3ccb04e003b34219276e06382a24d5b6a900f6d6 /profile-widget/diveprofileitem.cpp | |
parent | 2bd0c2143ecfca36ffa38b48d89dad7c57634ea9 (diff) | |
download | subsurface-db57a633d587444a7196c8d4274b8f327e77ceba.tar.gz |
Cleanup: constify threshold pointers in DiveProfileItem
These were pointers into the global prefs object. The user must
not use these to modify the settings, therefore make them
pointers-to-const.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget/diveprofileitem.cpp')
-rw-r--r-- | profile-widget/diveprofileitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/diveprofileitem.cpp b/profile-widget/diveprofileitem.cpp index 932586f12..ef47b0d59 100644 --- a/profile-widget/diveprofileitem.cpp +++ b/profile-widget/diveprofileitem.cpp @@ -999,7 +999,7 @@ void PartialPressureGasItem::paint(QPainter *painter, const QStyleOptionGraphics painter->restore(); } -void PartialPressureGasItem::setThresholdSettingsKey(double *prefPointerMin, double *prefPointerMax) +void PartialPressureGasItem::setThresholdSettingsKey(const double *prefPointerMin, const double *prefPointerMax) { thresholdPtrMin = prefPointerMin; thresholdPtrMax = prefPointerMax; |