Module: wine Branch: master Commit: 4ed0a496189d2adab5a52d04b6b6443f9188fda6 URL: https://gitlab.winehq.org/wine/wine/-/commit/4ed0a496189d2adab5a52d04b6b6443...
Author: Connor McAdams cmcadams@codeweavers.com Date: Mon Oct 30 08:42:06 2023 -0400
uiautomationcore: Don't return failure from ::GetEmbeddedFragmentRoots stub on the default BaseHwnd provider.
Signed-off-by: Connor McAdams cmcadams@codeweavers.com
---
dlls/uiautomationcore/uia_provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/uiautomationcore/uia_provider.c b/dlls/uiautomationcore/uia_provider.c index 33bed429ec6..2e5f0e6c6ea 100644 --- a/dlls/uiautomationcore/uia_provider.c +++ b/dlls/uiautomationcore/uia_provider.c @@ -1883,7 +1883,7 @@ static HRESULT WINAPI base_hwnd_fragment_GetEmbeddedFragmentRoots(IRawElementPro { FIXME("%p, %p: stub!\n", iface, ret_val); *ret_val = NULL; - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI base_hwnd_fragment_SetFocus(IRawElementProviderFragment *iface)