Fix wince build
authorAndreas Holzammer <andreas.holzammer@kdab.com>
Thu, 12 Jul 2012 09:21:47 +0000 (11:21 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 12 Jul 2012 12:23:08 +0000 (14:23 +0200)
Wince does not have a style so we cannot save it.
This was introduced by Change-Id: I6fca399376cd1fa9bffea0a686b56c4d5ec26605

Change-Id: I249aa8e9688e5a862b3787c531c19baea7338d5e
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
src/plugins/platforms/windows/qwindowswindow.cpp

index 4be743a..6ef85cd 100644 (file)
@@ -1237,6 +1237,7 @@ void QWindowsWindow::setWindowState_sys(Qt::WindowState newState)
             // Save geometry and style to be restored when fullscreen
             // is turned off again, since on Windows, it is not a real
             // Window state but emulated by changing geometry and style.
+#ifndef Q_OS_WINCE // there is no style under wince
             if (!m_savedStyle) {
                 m_savedStyle = style();
                 if (oldStates & Qt::WindowMinimized) {
@@ -1248,6 +1249,7 @@ void QWindowsWindow::setWindowState_sys(Qt::WindowState newState)
                     m_savedFrameGeometry = frameGeometry_sys();
                 }
             }
+#endif
             if (m_savedStyle & WS_SYSMENU)
                 newStyle |= WS_SYSMENU;
             if (visible)