Commit 20af4c3c authored by Francois Jacques's avatar Francois Jacques Committed by Alexandre Julliard

GetSystemMenu called with bRevert argument set to TRUE now returns

NULL as specified in Platform SDK.
parent 626691c4
......@@ -3992,7 +3992,7 @@ HMENU WINAPI GetSystemMenu( HWND hWnd, BOOL bRevert )
}
WIN_ReleaseWndPtr(wndPtr);
}
return retvalue;
return bRevert ? 0 : retvalue;
}
......
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