summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-02 23:09:09 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-10-04 08:05:09 -0700
commited78aeade0b8b5554f082a8a010aef5f0c2a1916 (patch)
treebf527b228f61bcb2dbee4d682e517ef8e34bd115 /core
parentb96633d3e919d4818070a3681ebabad8236a0692 (diff)
downloadsubsurface-ed78aeade0b8b5554f082a8a010aef5f0c2a1916.tar.gz
Change the signature of constructLocationTags
We actually want to be able to pass a specific divesite structure and not have it look that up by uuid. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core')
-rw-r--r--core/divesite.cpp3
-rw-r--r--core/divesite.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/core/divesite.cpp b/core/divesite.cpp
index 20e33dda1..293656c6a 100644
--- a/core/divesite.cpp
+++ b/core/divesite.cpp
@@ -2,10 +2,9 @@
#include "divesite.h"
#include "pref.h"
-QString constructLocationTags(uint32_t ds_uuid)
+QString constructLocationTags(struct dive_site *ds)
{
QString locationTag;
- struct dive_site *ds = get_dive_site_by_uuid(ds_uuid);
if (!ds || !ds->taxonomy.nr)
return locationTag;
diff --git a/core/divesite.h b/core/divesite.h
index b44e34a31..a731f0841 100644
--- a/core/divesite.h
+++ b/core/divesite.h
@@ -76,7 +76,7 @@ void merge_dive_sites(uint32_t ref, uint32_t *uuids, int count);
#ifdef __cplusplus
}
-QString constructLocationTags(uint32_t ds_uuid);
+QString constructLocationTags(struct dive_site *ds);
#endif