From 3065eddbe1ce3755ba4648780c442d5bf9da6763 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 11 Sep 2021 16:39:43 -0700 Subject: [PATCH] mobile: remove clearGpsData interface Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 5 ----- mobile-widgets/qmlmanager.h | 1 - 2 files changed, 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();