mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core/settings:: remove string functions for units
Remove string version of unit_system, duration_units, length, pressure, temperature, vertical_speed_time, and volume, including tests and make signals strongly typed in C++ Signed-off-by: jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
13b2b9f19c
commit
6e06550631
6 changed files with 60 additions and 183 deletions
|
|
@ -61,7 +61,7 @@ void TestPlannerShared::test_rates()
|
|||
|
||||
{
|
||||
// Set system to use meters
|
||||
qPrefUnits::set_unit_system(QStringLiteral("metric"));
|
||||
qPrefUnits::set_unit_system(METRIC);
|
||||
|
||||
plannerShared::set_ascratelast6m(16);
|
||||
QCOMPARE(qPrefDivePlanner::ascratelast6m(), 267);
|
||||
|
|
@ -109,7 +109,7 @@ void TestPlannerShared::test_rates()
|
|||
QCOMPARE(plannerShared::descrate(), 10);
|
||||
|
||||
// Set system to use feet
|
||||
qPrefUnits::set_unit_system(QStringLiteral("imperial"));
|
||||
qPrefUnits::set_unit_system(IMPERIAL);
|
||||
|
||||
plannerShared::set_ascratelast6m(33);
|
||||
QCOMPARE(qPrefDivePlanner::ascratelast6m(), 168);
|
||||
|
|
@ -197,7 +197,7 @@ void TestPlannerShared::test_gas()
|
|||
QCOMPARE(plannerShared::problemsolvingtime(), 6);
|
||||
|
||||
// Set system to use meters
|
||||
qPrefUnits::set_unit_system(QStringLiteral("metric"));
|
||||
qPrefUnits::set_unit_system(METRIC);
|
||||
|
||||
plannerShared::set_bottomsac(30);
|
||||
QCOMPARE(qPrefDivePlanner::bottomsac(), 30000);
|
||||
|
|
@ -245,7 +245,7 @@ void TestPlannerShared::test_gas()
|
|||
QCOMPARE(plannerShared::bestmixend(), 10);
|
||||
|
||||
// Set system to use feet
|
||||
qPrefUnits::set_unit_system(QStringLiteral("imperial"));
|
||||
qPrefUnits::set_unit_system(IMPERIAL);
|
||||
|
||||
plannerShared::set_bottomsac(0.9);
|
||||
QCOMPARE(qPrefDivePlanner::bottomsac(), 25485);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue