Fix wince build
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>
This commit is contained in:
parent
f56f542294
commit
983ebbc054
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user