Alexandre Julliard : user32: Pass the modified SetWindowPos flags to the set_window_pos server request.
Module: wine Branch: master Commit: 55165f87cce88e6b49f2436ef0f9d7dc12e25285 URL: http://source.winehq.org/git/wine.git/?a=commit;h=55165f87cce88e6b49f2436ef0... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Feb 20 14:41:09 2008 +0100 user32: Pass the modified SetWindowPos flags to the set_window_pos server request. --- dlls/user32/winpos.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index 4da5d28..daebe7c 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1675,7 +1675,7 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos ) SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects ); - if (!set_window_pos( winpos->hwnd, winpos->hwndInsertAfter, orig_flags, + if (!set_window_pos( winpos->hwnd, winpos->hwndInsertAfter, winpos->flags, &newWindowRect, &newClientRect, valid_rects )) return FALSE;
participants (1)
-
Alexandre Julliard