summaryrefslogtreecommitdiffstats
path: root/subsurface-core/divesite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-core/divesite.cpp')
-rw-r--r--subsurface-core/divesite.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/subsurface-core/divesite.cpp b/subsurface-core/divesite.cpp
deleted file mode 100644
index ae102a14b..000000000
--- a/subsurface-core/divesite.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#include "divesite.h"
-#include "pref.h"
-
-QString constructLocationTags(uint32_t ds_uuid)
-{
- QString locationTag;
- struct dive_site *ds = get_dive_site_by_uuid(ds_uuid);
-
- if (!ds || !ds->taxonomy.nr)
- return locationTag;
-
- locationTag = "<small><small>(tags: ";
- QString connector;
- for (int i = 0; i < 3; i++) {
- if (prefs.geocoding.category[i] == TC_NONE)
- continue;
- for (int j = 0; j < TC_NR_CATEGORIES; j++) {
- if (ds->taxonomy.category[j].category == prefs.geocoding.category[i]) {
- QString tag = ds->taxonomy.category[j].value;
- if (!tag.isEmpty()) {
- locationTag += connector + tag;
- connector = " / ";
- }
- break;
- }
- }
- }
-
- locationTag += ")</small></small>";
- return locationTag;
-}