Commit 6e57c593 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Fix compilation of qtdiag.


Adapt to changes in QSysInfo API.

Change-Id: Iae95ed9f10f260f9c89cb27b6f50a13322fa8068
Reviewed-by: default avatarMaurice Kalinowski <maurice.kalinowski@digia.com>
Showing with 2 additions and 2 deletions
......@@ -217,8 +217,8 @@ QString qtDiag(unsigned flags)
const QPlatformIntegration *platformIntegration = QGuiApplicationPrivate::platformIntegration();
str << QLibraryInfo::build() << " on \"" << QGuiApplication::platformName() << "\" "
<< '\n'
<< "OS: " << QSysInfo::prettyOsName()
<< " [kernel version " << QSysInfo::osKernelVersion() << "]\n";
<< "OS: " << QSysInfo::prettyProductName()
<< " [kernel version " << QSysInfo::productVersion() << "]\n";
str << "\nCPU features:";
DUMP_CPU_FEATURE(SSE2, "SSE2");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment