From e4a33c0660b0c71d0de271a7ab882f5dc69f31f0 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Fri, 14 Jun 2002 00:01:44 +0000 Subject: [PATCH] Cosmetic fix. --- dlls/comctl32/progress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/progress.c b/dlls/comctl32/progress.c index 5f9aee37b39..cd0d4a46ca4 100644 --- a/dlls/comctl32/progress.c +++ b/dlls/comctl32/progress.c @@ -228,7 +228,7 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message, DWORD dwExStyle = GetWindowLongW (hwnd, GWL_EXSTYLE); dwExStyle &= ~(WS_EX_CLIENTEDGE | WS_EX_WINDOWEDGE); dwExStyle |= WS_EX_STATICEDGE; - SetWindowLongW (hwnd, GWL_EXSTYLE, dwExStyle | WS_EX_STATICEDGE); + SetWindowLongW (hwnd, GWL_EXSTYLE, dwExStyle); /* Force recalculation of a non-client area */ SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);