From a471868d88f5ece5d342863ac37535d4ae40d73c Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Sat, 7 Mar 2020 06:31:14 +0100 Subject: [PATCH] Version parameter: Show Qt platform plugin, OS and CPU arch Signed-off-by: Michael Schuster --- src/libsync/theme.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index 8f6dbd83f..fde29c416 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -550,7 +550,9 @@ QString Theme::versionSwitchOutput() const stream << "Git revision " << GIT_SHA1 << endl; #endif stream << "Using Qt " << qVersion() << ", built against Qt " << QT_VERSION_STR << endl; + stream << "Using Qt platform plugin '" << QGuiApplication::platformName() << "'" << endl; stream << "Using '" << QSslSocket::sslLibraryVersionString() << "'" << endl; + stream << "Running on " << Utility::platformName() << ", " << QSysInfo::currentCpuArchitecture() << endl; return helpText; } -- 2.30.2