Commit 4ed0a496 authored by Connor McAdams's avatar Connor McAdams Committed by Alexandre Julliard

uiautomationcore: Don't return failure from ::GetEmbeddedFragmentRoots stub on…

uiautomationcore: Don't return failure from ::GetEmbeddedFragmentRoots stub on the default BaseHwnd provider. Signed-off-by: 's avatarConnor McAdams <cmcadams@codeweavers.com>
parent a35c77fd
...@@ -1883,7 +1883,7 @@ static HRESULT WINAPI base_hwnd_fragment_GetEmbeddedFragmentRoots(IRawElementPro ...@@ -1883,7 +1883,7 @@ static HRESULT WINAPI base_hwnd_fragment_GetEmbeddedFragmentRoots(IRawElementPro
{ {
FIXME("%p, %p: stub!\n", iface, ret_val); FIXME("%p, %p: stub!\n", iface, ret_val);
*ret_val = NULL; *ret_val = NULL;
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI base_hwnd_fragment_SetFocus(IRawElementProviderFragment *iface) static HRESULT WINAPI base_hwnd_fragment_SetFocus(IRawElementProviderFragment *iface)
......
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