From: Michael Schuster Date: Sat, 7 Mar 2020 05:31:14 +0000 (+0100) Subject: Version parameter: Show Qt platform plugin, OS and CPU arch X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~323^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a471868d88f5ece5d342863ac37535d4ae40d73c;p=nextcloud-desktop.git Version parameter: Show Qt platform plugin, OS and CPU arch Signed-off-by: Michael Schuster --- 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; }