summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qthread_win.cpp
diff options
context:
space:
mode:
authorAndrew Knight <andrew.knight@digia.com>2014-01-05 12:41:16 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-07 10:55:54 +0100
commit9b19a69c89c07b02ab631c1ccfd4d89013b6ec45 (patch)
tree064473ca07e0876cf81c86741ba1e45091e67921 /src/corelib/thread/qthread_win.cpp
parent1f31c6c6b1f4b37806aa5c1c426efb31ac78ed5e (diff)
WinRT: Clean up core event dispatcher
- Move private classes in the .cpp file (they aren't needed outside) - Conform to Qt style, such as includes and braces - Use ComPtr where appropriate - Use foreach where appropriate - Remove non-functional wake/interrupt leftovers - Remove redundant timer list - Make the timer callback a static method, so it won't crash if it gets called on shutdown Task-number: QTBUG-35945 Change-Id: I5426fba2735e908a04ea60287f9936f5abde6644 Reviewed-by: Oliver Wolff <oliver.wolff@digia.com>
Diffstat (limited to 'src/corelib/thread/qthread_win.cpp')
-rw-r--r--src/corelib/thread/qthread_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qthread_win.cpp b/src/corelib/thread/qthread_win.cpp
index 28e13910d9..2c3ff879e4 100644
--- a/src/corelib/thread/qthread_win.cpp
+++ b/src/corelib/thread/qthread_win.cpp
@@ -55,7 +55,7 @@
#include <private/qcoreapplication_p.h>
#ifdef Q_OS_WINRT
-#include "private/qeventdispatcher_winrt_p.h"
+#include <private/qeventdispatcher_winrt_p.h>
#else
#include <private/qeventdispatcher_win_p.h>
#endif