aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2021-09-11 16:48:07 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-09-13 11:21:34 -0700
commit085c65b0c42f7877c7b191c0bf3659e633df01c6 (patch)
tree43b6846dbd9e1e16a6921e34fb6553a3d6557d02 /mobile-widgets/qmlmanager.cpp
parentf33c90ba6ba372656abe8f2b23047d6c183c2886 (diff)
downloadsubsurface-085c65b0c42f7877c7b191c0bf3659e633df01c6.tar.gz
mobile: remove logText property
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 52a6f3d2b..f6436bb3b 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1634,18 +1634,6 @@ int QMLManager::addDive()
return diveId;
}
-QString QMLManager::logText() const
-{
- QString logText = m_logText + QString("\nNumer of GPS fixes: %1").arg(GpsLocation::instance()->getGpsNum());
- return logText;
-}
-
-void QMLManager::setLogText(const QString &logText)
-{
- m_logText = logText;
- emit logTextChanged();
-}
-
void QMLManager::appendTextToLog(const QString &newText)
{
qDebug() << QString::number(timer.elapsed() / 1000.0,'f', 3) + ": " + newText;