diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-07-14 11:35:04 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-14 11:52:17 -0700 |
commit | 8c0d0de2e62356e1bbdad97843d185a37973c5c7 (patch) | |
tree | 0179eee9ba82a843f676551e61b9886930c9ceab /qthelper.h | |
parent | e82f8ea565a68aa1fa980cb12c1f136b1d4a57f9 (diff) | |
download | subsurface-8c0d0de2e62356e1bbdad97843d185a37973c5c7.tar.gz |
Location completer: give distance if known
If both the displayed dive and the dive site which is shown as a potential
completion have a GPS fix, indicate the distance.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qthelper.h')
-rw-r--r-- | qthelper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qthelper.h b/qthelper.h index 418c2eb31..0f112ff70 100644 --- a/qthelper.h +++ b/qthelper.h @@ -13,6 +13,7 @@ extern QTranslator *qtTranslator, *ssrfTranslator; QString weight_string(int weight_in_grams); +QString distance_string(int distanceInMeters); bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_text, bool *parsed_out = 0); extern "C" const char *printGPSCoords(int lat, int lon); QList<int> getDivesInTrip(dive_trip_t *trip); |