summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefGeocoding.h
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-11-23 17:59:49 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-05 11:48:26 -0800
commit54f8217eec0df1876086849c8dcc594da709201a (patch)
tree5e67565a3e603e972c90cd2b64534925116c9a75 /core/settings/qPrefGeocoding.h
parentd0dcc7b32a9f8f332cb9ae268cfa7e0797ad19ec (diff)
downloadsubsurface-54f8217eec0df1876086849c8dcc594da709201a.tar.gz
core/settings: make qPrefGeocoding functions static
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'core/settings/qPrefGeocoding.h')
-rw-r--r--core/settings/qPrefGeocoding.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/settings/qPrefGeocoding.h b/core/settings/qPrefGeocoding.h
index 9af704e47..a47b534bc 100644
--- a/core/settings/qPrefGeocoding.h
+++ b/core/settings/qPrefGeocoding.h
@@ -22,9 +22,9 @@ public:
static void sync() { loadSync(true); }
public:
- taxonomy_category first_taxonomy_category() { return prefs.geocoding.category[0]; }
- taxonomy_category second_taxonomy_category() { return prefs.geocoding.category[1]; }
- taxonomy_category third_taxonomy_category() { return prefs.geocoding.category[2]; }
+ static taxonomy_category first_taxonomy_category() { return prefs.geocoding.category[0]; }
+ static taxonomy_category second_taxonomy_category() { return prefs.geocoding.category[1]; }
+ static taxonomy_category third_taxonomy_category() { return prefs.geocoding.category[2]; }
public slots:
static void set_first_taxonomy_category(taxonomy_category value);