diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-09-11 16:39:43 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-09-13 11:21:34 -0700 |
commit | 3065eddbe1ce3755ba4648780c442d5bf9da6763 (patch) | |
tree | b9fa0c52b4e042478d03b42f255709bc01eed058 | |
parent | ea751928aaf6b3d987d477d736ff9a490dccb99a (diff) | |
download | subsurface-3065eddbe1ce3755ba4648780c442d5bf9da6763.tar.gz |
mobile: remove clearGpsData interface
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 5 | ||||
-rw-r--r-- | mobile-widgets/qmlmanager.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 204f04d46..ca2e33ece 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1654,11 +1654,6 @@ void QMLManager::applyGpsData() changesNeedSaving(); } -void QMLManager::clearGpsData() -{ - GpsLocation::instance()->clearGpsData(); -} - void QMLManager::deleteGpsFix(quint64 when) { GpsLocation::instance()->deleteGpsFix(when); diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index 1e1cad59b..14e9005b4 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -215,7 +215,6 @@ public slots: int addDive(); void applyGpsData(); void cancelDownloadDC(); - void clearGpsData(); QString getCombinedLogs(); void copyAppLogToClipboard(); void copyGpsFixesToClipboard(); |