diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-10-22 11:43:28 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-29 11:07:52 -0700 |
commit | 4e320cca5bae6d3d625c91e48ff2635d9b167aa2 (patch) | |
tree | 8bf1ba516b7aada89132c679350f496bb86a339a /tests | |
parent | c78a864e15c7e070a7233d09c805f66490de7e27 (diff) | |
download | subsurface-4e320cca5bae6d3d625c91e48ff2635d9b167aa2.tar.gz |
Remove three obsolete preferences options for geocoding
These options are not used any longer/were never used and can be
removed to not confuse the users.
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testpreferences.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/testpreferences.cpp b/tests/testpreferences.cpp index a80ade89f..59a4037a6 100644 --- a/tests/testpreferences.cpp +++ b/tests/testpreferences.cpp @@ -231,14 +231,6 @@ void TestPreferences::testPreferences() TEST(fb->albumId(), QStringLiteral("album-id-2")); auto geo = pref->geocoding; - geo->setEnableGeocoding(true); - geo->setParseDiveWithoutGps(true); - geo->setTagExistingDives(true); - - TEST(geo->enableGeocoding(),true); - TEST(geo->parseDiveWithoutGps(),true); - TEST(geo->tagExistingDives(),true); - geo->setFirstTaxonomyCategory(TC_NONE); geo->setSecondTaxonomyCategory(TC_OCEAN); geo->setThirdTaxonomyCategory(TC_COUNTRY); @@ -247,14 +239,6 @@ void TestPreferences::testPreferences() TEST(geo->secondTaxonomyCategory(), TC_OCEAN); TEST(geo->thirdTaxonomyCategory(), TC_COUNTRY); - geo->setEnableGeocoding(false); - geo->setParseDiveWithoutGps(false); - geo->setTagExistingDives(false); - - TEST(geo->enableGeocoding(),false); - TEST(geo->parseDiveWithoutGps(),false); - TEST(geo->tagExistingDives(),false); - geo->setFirstTaxonomyCategory(TC_OCEAN); geo->setSecondTaxonomyCategory(TC_COUNTRY); geo->setThirdTaxonomyCategory(TC_NONE); |