From 99cc862c0fd5fb21152854075808cf82a3a2025d Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 17 Jan 2006 19:56:51 +0000 Subject: [PATCH] WinCE compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/statbr95.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/msw/statbr95.cpp b/src/msw/statbr95.cpp index 887d12df48..4cf594a898 100644 --- a/src/msw/statbr95.cpp +++ b/src/msw/statbr95.cpp @@ -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