From 7bf90fd2087d5082ab016587d1b980ddfef3d665 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 11 Sep 2021 16:50:41 -0700 Subject: [PATCH] mobile: remove hasLocationSourceChanged 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 f6436bb3b..1553e1a4b 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1653,11 +1653,6 @@ void QMLManager::setLocationServiceAvailable(bool locationServiceAvailable) emit locationServiceAvailableChanged(); } -void QMLManager::hasLocationSourceChanged() -{ - setLocationServiceAvailable(GpsLocation::instance()->hasLocationsSource()); -} - void QMLManager::setVerboseEnabled(bool verboseMode) { m_verboseEnabled = verboseMode; diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index d7e62cffe..2ccfa374b 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -222,7 +222,6 @@ public slots: void screenChanged(QScreen *screen); void appendTextToLog(const QString &newText); void quit(); - void hasLocationSourceChanged(); void btRescan(); void usbRescan(); void rescanConnections();