user32: Pass the modified SetWindowPos flags to the set_window_pos server request.

This commit is contained in:
Alexandre Julliard 2008-02-20 14:41:09 +01:00
parent ea563709ef
commit 55165f87cc
1 changed files with 1 additions and 1 deletions

View File

@ -1675,7 +1675,7 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos )
SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects ); 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 )) &newWindowRect, &newClientRect, valid_rects ))
return FALSE; return FALSE;