diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-09-18 13:13:00 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-09-21 15:13:10 -0700 |
commit | e68d287c91d4eb60d7db6ed3487ede22488fcc48 (patch) | |
tree | b80fd0338aeb2ed435cb6aa8f8c99eb45e37439b | |
parent | 05f7ed0e1dc5aab9568cc0ed88dc968b99018254 (diff) | |
download | subsurface-e68d287c91d4eb60d7db6ed3487ede22488fcc48.tar.gz |
Mobile: print out Qt information on the system we are running on
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 4978db02f..b92e4f081 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -204,6 +204,7 @@ QMLManager::QMLManager() : m_locationServiceEnabled(false), int git_maj, git_min, git_rev; git_libgit2_version(&git_maj, &git_min, &git_rev); appendTextToLog(QStringLiteral("built with libgit2 %1.%2.%3").arg(git_maj).arg(git_min).arg(git_rev)); + appendTextToLog(QStringLiteral("Running on %1").arg(QSysInfo::prettyProductName())); setStartPageText(tr("Starting...")); LOG_STP("qmlmgr start page"); |