mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: SettingsObjectWrapper remove buehlmann property
remove buehlmann(), setBuehlmann(bool) buehlmann() is really planner_deco_mode == BUEHLMANN, so no need for a function setBuehlmann is dangerous, because buehlmann is saved on disk, but not in prefs.* and thus can lead to inconsistency between bool buehlmann and planner_deco_moce. Signed-off-by: Jan Iversen <jani@apache.org>
This commit is contained in:
parent
26be37fe58
commit
3c69c8299b
3 changed files with 0 additions and 24 deletions
|
@ -61,8 +61,6 @@ void TestPreferences::testPreferences()
|
|||
TEST(tecDetails->calcalltissues(), true);
|
||||
tecDetails->setCalcndltts(true);
|
||||
TEST(tecDetails->calcndltts(), true);
|
||||
tecDetails->setBuehlmann(true);
|
||||
TEST(tecDetails->buehlmann(), true);
|
||||
tecDetails->setHRgraph(true);
|
||||
TEST(tecDetails->hrgraph(), true);
|
||||
tecDetails->setTankBar(true);
|
||||
|
@ -102,8 +100,6 @@ void TestPreferences::testPreferences()
|
|||
TEST(tecDetails->calcalltissues(), false);
|
||||
tecDetails->setCalcndltts(false);
|
||||
TEST(tecDetails->calcndltts(), false);
|
||||
tecDetails->setBuehlmann(false);
|
||||
TEST(tecDetails->buehlmann(), false);
|
||||
tecDetails->setHRgraph(false);
|
||||
TEST(tecDetails->hrgraph(), false);
|
||||
tecDetails->setTankBar(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue