diff options
author | Samuli Piippo <samuli.piippo@digia.com> | 2012-04-18 06:11:25 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-05-15 06:45:03 (GMT) |
commit | 75e1a0e0897985555e12dda355b4d6ed43e9b920 (patch) | |
tree | 359651a93918fd4768d600b936d2f81f7c854a74 /src/gui | |
parent | 9a2ac50aea0892b640a6192b00574eb4efa19361 (diff) | |
download | Qt-75e1a0e0897985555e12dda355b4d6ed43e9b920.zip Qt-75e1a0e0897985555e12dda355b4d6ed43e9b920.tar.gz Qt-75e1a0e0897985555e12dda355b4d6ed43e9b920.tar.bz2 |
Fix missing include in QWS shared memory
QWS shared memory was missing include file for QByteArray.
This fails with QNX when precompiled headers are not used.
Change-Id: Ifb682863736ade3f74ea53a30d6fb1d4a5ff16dd
Reviewed-by: Andy Shaw <andy.shaw@digia.com>
Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/embedded/qwssharedmemory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/embedded/qwssharedmemory.cpp b/src/gui/embedded/qwssharedmemory.cpp index 39a2f68..3b9080a 100644 --- a/src/gui/embedded/qwssharedmemory.cpp +++ b/src/gui/embedded/qwssharedmemory.cpp @@ -62,6 +62,7 @@ QT_BEGIN_NAMESPACE #ifdef QT_POSIX_IPC #include <QtCore/QAtomicInt> +#include <QByteArray> static QBasicAtomicInt localUniqueId = Q_BASIC_ATOMIC_INITIALIZER(1); |