summaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-29 17:29:46 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-29 17:29:46 -0800
commitf3065230a3026b65376e629fd05439f995fcb6ef (patch)
tree344d5a2987c4b76bb0e3126a089cbae20deb81ac /qt-mobile
parent0624e882e48df623ea240e164b493c50c7887582 (diff)
downloadsubsurface-f3065230a3026b65376e629fd05439f995fcb6ef.tar.gz
QML UI: add information about build time / run time Qt version
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/qmlmanager.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp
index 884ea41d3..31defa005 100644
--- a/qt-mobile/qmlmanager.cpp
+++ b/qt-mobile/qmlmanager.cpp
@@ -43,7 +43,9 @@ QMLManager::QMLManager() :
{
m_instance = this;
appendTextToLog(getUserAgent());
+ appendTextToLog(QString("build with Qt Version %1, runtime from Qt Version %2").arg(QT_VERSION_STR).arg(qVersion()));
qDebug() << "Starting" << getUserAgent();
+ qDebug() << QString("build with Qt Version %1, runtime from Qt Version %2").arg(QT_VERSION_STR).arg(qVersion());
m_startPageText = tr("Searching for dive data");
// create location manager service
locationProvider = new GpsLocation(&appendTextToLogStandalone, this);