diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-09-11 16:44:45 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-09-13 11:21:34 -0700 |
commit | f33c90ba6ba372656abe8f2b23047d6c183c2886 (patch) | |
tree | 875ff8bf083a208f87740a78c5491a1393769ea2 | |
parent | 094a3b01c8d69a3fad902ac58792ad91a3b973c8 (diff) | |
download | subsurface-f33c90ba6ba372656abe8f2b23047d6c183c2886.tar.gz |
mobile: remove deleteGpsFix 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 e218f280c..52a6f3d2b 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1634,11 +1634,6 @@ int QMLManager::addDive() return diveId; } -void QMLManager::deleteGpsFix(quint64 when) -{ - GpsLocation::instance()->deleteGpsFix(when); -} - QString QMLManager::logText() const { QString logText = m_logText + QString("\nNumer of GPS fixes: %1").arg(GpsLocation::instance()->getGpsNum()); diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index 24f406f87..fd379d69c 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -222,7 +222,6 @@ public slots: QString getDate(const QString& diveId); QString getGpsFromSiteName(const QString& siteName); QString getVersion() const; - void deleteGpsFix(quint64 when); void refreshDiveList(); void screenChanged(QScreen *screen); void appendTextToLog(const QString &newText); |