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:
parent
b7f5e4ae5f
commit
29503f2464
|
@ -353,7 +353,7 @@ static HRESULT WINAPI Client_accLocation(IAccessible *iface, LONG *pxLeft,
|
||||||
if(!GetClientRect(This->hwnd, &rect))
|
if(!GetClientRect(This->hwnd, &rect))
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
|
||||||
pt.x = rect.left,
|
pt.x = rect.left;
|
||||||
pt.y = rect.top;
|
pt.y = rect.top;
|
||||||
MapWindowPoints(This->hwnd, NULL, &pt, 1);
|
MapWindowPoints(This->hwnd, NULL, &pt, 1);
|
||||||
*pxLeft = pt.x;
|
*pxLeft = pt.x;
|
||||||
|
|
Loading…
Reference in New Issue