summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-08-24 10:20:40 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-08-24 12:00:23 +0000
commit9dd9c6cae4b37d3bd14127f60d20e08a2f6b2808 (patch)
tree82920e8f2fc9c08831a631a4b25a670f28cd7b6a /src/corelib
parent286c2a0e09480219dd799614c421d420b7b75727 (diff)
qthreadstorage.h: Fix syncqt warning about include path for qscopedpointer.h
Add QtCore, fixing: qthreadstorage.h includes qscopedpointer.h when it should include QtCore/qscopedpointer.h Amends 815153d4a453855bb528f0fa9cb7e5a77d589a11. Change-Id: I8424bc4d0b0d666dbd04d63530af4fbd27987628 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/thread/qthreadstorage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qthreadstorage.h b/src/corelib/thread/qthreadstorage.h
index d556e33c57..55fc482da3 100644
--- a/src/corelib/thread/qthreadstorage.h
+++ b/src/corelib/thread/qthreadstorage.h
@@ -154,7 +154,7 @@ QT_END_NAMESPACE
#else // !QT_CONFIG(thread)
-#include <qscopedpointer.h>
+#include <QtCore/qscopedpointer.h>
#include <type_traits>