oleacc: Avoid using the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-03-24 14:26:44 +01:00 committed by Alexandre Julliard
parent b7f5e4ae5f
commit 29503f2464
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ static HRESULT WINAPI Client_accLocation(IAccessible *iface, LONG *pxLeft,
if(!GetClientRect(This->hwnd, &rect))
return S_OK;
pt.x = rect.left,
pt.x = rect.left;
pt.y = rect.top;
MapWindowPoints(This->hwnd, NULL, &pt, 1);
*pxLeft = pt.x;