24 Feb
2025
24 Feb
'25
1:48 p.m.
Connor McAdams (@cmcadams) commented about dlls/comctl32/syslink.c:
static HRESULT WINAPI Accessible_get_accDefaultAction(IAccessible *iface, VARIANT childid, BSTR *action) { - FIXME("%p\n", iface); - return E_NOTIMPL; + SYSLINK_ACC *This = impl_from_IAccessible(iface); + HRESULT hr; + DOC_ITEM* item; + + TRACE("%p, %s\n", iface, debugstr_variant(&childid));
Same thing as `get_accName` WRT checking for `NULL` on action and initializing it to `NULL`. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7402#note_95727