GetSystemMenu called with bRevert argument set to TRUE now returns
NULL as specified in Platform SDK.
This commit is contained in:
parent
626691c4b8
commit
20af4c3c87
|
@ -3992,7 +3992,7 @@ HMENU WINAPI GetSystemMenu( HWND hWnd, BOOL bRevert )
|
|||
}
|
||||
WIN_ReleaseWndPtr(wndPtr);
|
||||
}
|
||||
return retvalue;
|
||||
return bRevert ? 0 : retvalue;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue