uiautomationcore: Return success from UiaRaiseAutomationEvent().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-02-11 18:00:57 +03:00 committed by Alexandre Julliard
parent 5cfeed5397
commit d0727decde
1 changed files with 1 additions and 1 deletions

View File

@ -91,5 +91,5 @@ LRESULT WINAPI UiaReturnRawElementProvider(HWND hwnd, WPARAM wParam,
HRESULT WINAPI UiaRaiseAutomationEvent(IRawElementProviderSimple *provider, EVENTID id)
{
FIXME("(%p, %d): stub\n", provider, id);
return E_NOTIMPL;
return S_OK;
}