summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_georeference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/preferences/preferences_georeference.cpp')
-rw-r--r--desktop-widgets/preferences/preferences_georeference.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/desktop-widgets/preferences/preferences_georeference.cpp b/desktop-widgets/preferences/preferences_georeference.cpp
index 6600326ea..d839f9e29 100644
--- a/desktop-widgets/preferences/preferences_georeference.cpp
+++ b/desktop-widgets/preferences/preferences_georeference.cpp
@@ -24,9 +24,6 @@ PreferencesGeoreference::~PreferencesGeoreference()
void PreferencesGeoreference::refreshSettings()
{
- ui->enable_geocoding->setChecked(prefs.geocoding.enable_geocoding);
- ui->parse_without_gps->setChecked(prefs.geocoding.parse_dive_without_gps);
- ui->tag_existing_dives->setChecked(prefs.geocoding.tag_existing_dives);
ui->first_item->setCurrentIndex(prefs.geocoding.category[0]);
ui->second_item->setCurrentIndex(prefs.geocoding.category[1]);
ui->third_item->setCurrentIndex(prefs.geocoding.category[2]);
@@ -35,9 +32,6 @@ void PreferencesGeoreference::refreshSettings()
void PreferencesGeoreference::syncSettings()
{
auto geocoding = SettingsObjectWrapper::instance()->geocoding;
- geocoding->setEnableGeocoding(ui->enable_geocoding->isChecked());
- geocoding->setParseDiveWithoutGps(ui->parse_without_gps->isChecked());
- geocoding->setTagExistingDives(ui->tag_existing_dives->isChecked());
geocoding->setFirstTaxonomyCategory((taxonomy_category) ui->first_item->currentIndex());
geocoding->setSecondTaxonomyCategory((taxonomy_category) ui->second_item->currentIndex());
geocoding->setThirdTaxonomyCategory((taxonomy_category) ui->third_item->currentIndex());