Skip to content
Snippets Groups Projects
Commit acc45124 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard
Browse files

oleacc: Add Client_get_accDefaultAction implementation.

parent 4ecee6f7
No related branches found
No related tags found
No related merge requests found
......@@ -261,8 +261,13 @@ static HRESULT WINAPI Client_get_accDefaultAction(IAccessible *iface,
VARIANT varID, BSTR *pszDefaultAction)
{
Client *This = impl_from_Client(iface);
FIXME("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDefaultAction);
return E_NOTIMPL;
TRACE("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDefaultAction);
*pszDefaultAction = NULL;
if(convert_child_id(&varID) != CHILDID_SELF)
return E_INVALIDARG;
return S_FALSE;
}
static HRESULT WINAPI Client_accSelect(IAccessible *iface, LONG flagsSelect, VARIANT varID)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment