diff options
author | jan Iversen <jani@apache.org> | 2018-09-14 12:25:18 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-05 11:48:26 -0800 |
commit | 653a2baf111284171f0a2d25d6d9a0e82979f6d1 (patch) | |
tree | 65019f3ad9945216a8ca2c58ac4e681b32048f63 /core/settings/qPrefPartialPressureGas.h | |
parent | 6e846eb4c0c5755ddddbd696aeb6531eab5488d8 (diff) | |
download | subsurface-653a2baf111284171f0a2d25d6d9a0e82979f6d1.tar.gz |
core/settings: make qPref* constructors private
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/settings/qPrefPartialPressureGas.h')
-rw-r--r-- | core/settings/qPrefPartialPressureGas.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/settings/qPrefPartialPressureGas.h b/core/settings/qPrefPartialPressureGas.h index 2f20d980e..7c8df9014 100644 --- a/core/settings/qPrefPartialPressureGas.h +++ b/core/settings/qPrefPartialPressureGas.h @@ -16,7 +16,6 @@ class qPrefPartialPressureGas : public QObject { Q_PROPERTY(double po2_threshold_min READ po2_threshold_min WRITE set_po2_threshold_min NOTIFY po2_threshold_minChanged); public: - qPrefPartialPressureGas(QObject *parent = NULL); static qPrefPartialPressureGas *instance(); // Load/Sync local settings (disk) and struct preference @@ -52,6 +51,8 @@ signals: void po2_threshold_minChanged(double value); private: + qPrefPartialPressureGas() {} + static void disk_phe(bool doSync); static void disk_phe_threshold(bool doSync); static void disk_pn2(bool doSync); |