WinCE compile fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2006-01-17 19:56:51 +00:00
parent b486658282
commit 99cc862c0f

View File

@ -306,8 +306,11 @@ void wxStatusBar95::DoMoveWindow(int x, int y, int width, int height)
// we must use SWP_NOCOPYBITS here otherwise it paints incorrectly
// if other windows are size deferred
::SetWindowPos(GetHwnd(), NULL, x, y, width, height,
SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE |
SWP_NOCOPYBITS | SWP_NOSENDCHANGING);
SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE
#ifndef __WXWINCE__
| SWP_NOCOPYBITS | SWP_NOSENDCHANGING
#endif
);
}
// adjust fields widths to the new size