Commit 418d0933 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

shell32: ABM_NEW was using parameters that are not set.

parent 1b039cc3
......@@ -864,8 +864,8 @@ UINT WINAPI SHAppBarMessage(DWORD msg, PAPPBARDATA data)
data->hWnd=GetActiveWindow();
return TRUE;
case ABM_NEW:
SetWindowPos(data->hWnd,HWND_TOP,rec.left,rec.top,
width,height,SWP_SHOWWINDOW);
/* cbSize, hWnd, and uCallbackMessage are used. All other ignored */
SetWindowPos(data->hWnd,HWND_TOP,0,0,0,0,SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOSIZE);
return TRUE;
case ABM_QUERYPOS:
GetWindowRect(data->hWnd, &(data->rc));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment