From 0c7ac3484fcac0eb54ee70e13f5c9e0da2f43a43 Mon Sep 17 00:00:00 2001 From: sekelsenmat Date: Fri, 26 Feb 2010 03:29:29 +0000 Subject: [PATCH] Fixes issues with GroupBox git-svn-id: trunk@23794 - --- lcl/interfaces/wince/wincewsstdctrls.pp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lcl/interfaces/wince/wincewsstdctrls.pp b/lcl/interfaces/wince/wincewsstdctrls.pp index b0dd9ba8bb..59e72557c2 100644 --- a/lcl/interfaces/wince/wincewsstdctrls.pp +++ b/lcl/interfaces/wince/wincewsstdctrls.pp @@ -386,12 +386,10 @@ begin case Msg of WM_ERASEBKGND, WM_NCPAINT, WM_PAINT, WM_CTLCOLORMSGBOX..WM_CTLCOLORSTATIC: begin - Result := CallDefaultWindowProc(Window, Msg, WParam, LParam); -// Result := WindowProc(Window, Msg, WParam, LParam); + Result := WindowProc(Window, Msg, WParam, LParam); end; else - Result := WindowProc(Window, Msg, WParam, LParam); -// Result := CallDefaultWindowProc(Window, Msg, WParam, LParam); + Result := CallDefaultWindowProc(Window, Msg, WParam, LParam); end; end;