Dive site: replace UUID by pointer in mobile code

Replace UUIDs by pointers to dive-site in mobile code. In both
cases, the value is transported via a QVariant. The function
getCoordinatesForUUID(), which was only used from mobile, can
be replaced by a getCoordinatesFor() function taking a variant
supposed to contain a dive-site pointer. Likewise, the variant
of the centerOnDiveSite function is now supposed to wrap a
pointer-to-divesite.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-10-25 20:46:12 +02:00 committed by Dirk Hohndel
parent 872d56de01
commit 75b5d61522
7 changed files with 19 additions and 21 deletions

View file

@ -52,7 +52,7 @@ Item {
enabled: dive.gps_decimal !== ""
onClicked: {
showMap()
mapPage.centerOnDiveSiteUUID(dive.dive_site_uuid)
mapPage.centerOnDiveSite(dive.dive_site)
}
}
}
@ -63,7 +63,7 @@ Item {
text: qsTr("Map it")
onClicked: {
showMap()
mapPage.centerOnDiveSiteUUID(dive.dive_site_uuid)
mapPage.centerOnDiveSite(dive.dive_site)
}
}
Row {