Commit 4863992e authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

uiautomationcore: Don't return failure from ::get_FragmentRoot stub on the…

uiautomationcore: Don't return failure from ::get_FragmentRoot stub on the default BaseHwnd provider. Signed-off-by: 's avatarConnor McAdams <cmcadams@codeweavers.com>
parent 362ea302
......@@ -1897,7 +1897,7 @@ static HRESULT WINAPI base_hwnd_fragment_get_FragmentRoot(IRawElementProviderFra
{
FIXME("%p, %p: stub!\n", iface, ret_val);
*ret_val = NULL;
return E_NOTIMPL;
return S_OK;
}
static const IRawElementProviderFragmentVtbl base_hwnd_fragment_vtbl = {
......
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