Commit 29503f24 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

oleacc: Avoid using the comma operator.

parent b7f5e4ae
......@@ -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;
......
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