summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-07-26 08:39:43 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-07-26 08:41:21 +0200
commit97c659a5aa6092b70751950aa6a6641295c2539d (patch)
tree48accbeac5f1ab98bf77084a60e9beac85d55bc4 /src
parent28fbcb3d2a31071947e949258575ed9c5d2bba73 (diff)
Fix MSVC compiler warning.
class/struct mismatch. Change-Id: Ifaecc4ba4baeceb41fffba84678466faf48469bc Reviewed-on: http://codereview.qt.nokia.com/2156 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qplatformscreen_qpa.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qplatformscreen_qpa.cpp b/src/gui/kernel/qplatformscreen_qpa.cpp
index ae1c6dcf06..8fb42595b8 100644
--- a/src/gui/kernel/qplatformscreen_qpa.cpp
+++ b/src/gui/kernel/qplatformscreen_qpa.cpp
@@ -46,8 +46,9 @@
#include <QtGui/qscreen.h>
#include <QtGui/qwindow.h>
-struct QPlatformScreenPrivate
+class QPlatformScreenPrivate
{
+public:
QScreen *screen;
};