summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/windows/qwindowscontext.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-29 14:47:46 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-30 10:27:37 +0000
commit4e88f1aaea94ae021b31d914d54a35ae89125e15 (patch)
tree33d813a73c8950187b776aba637c85f3693a82b5 /src/plugins/platforms/windows/qwindowscontext.cpp
parent52ddfb36c80f1f0cba4e90d40b43c426687fac41 (diff)
Windows QPA plugin: Fix debug formatting.
- Introduce QDebugStateSaver for all debug operators. - Remove the "Flags=" from enumerations since their type is now output by default. - Added some spaces since the previous formatting relied on space=true as a result of some debug operators erroneously returning debug.space(), which is now fixed in qtbase. - Fixed formatting, added noquote() where necessary, added some newlines, used stream modifiers instead of QString::number(n, 16) to output hex numbers. - Fix indentation. Change-Id: I64123a4262916e21448cda2aa61ae1100f07291a Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/plugins/platforms/windows/qwindowscontext.cpp')
-rw-r--r--src/plugins/platforms/windows/qwindowscontext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/platforms/windows/qwindowscontext.cpp b/src/plugins/platforms/windows/qwindowscontext.cpp
index 7d7ea031a5..a532e92397 100644
--- a/src/plugins/platforms/windows/qwindowscontext.cpp
+++ b/src/plugins/platforms/windows/qwindowscontext.cpp
@@ -566,8 +566,8 @@ QString QWindowsContext::registerWindowClass(QString cname,
d->m_registeredWindowClassNames.insert(cname);
qCDebug(lcQpaWindows).nospace() << __FUNCTION__ << ' ' << cname
- << " style=0x" << QString::number(style, 16)
- << " brush=" << brush << " icon=" << icon << " atom=" << atom;
+ << " style=0x" << hex << style << dec
+ << " brush=" << brush << " icon=" << icon << " atom=" << atom;
return cname;
}