Commit 1eb9d7e7 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

oleacc: Add Client_get_accDescription implementation.

parent 5224f093
......@@ -183,8 +183,13 @@ static HRESULT WINAPI Client_get_accDescription(IAccessible *iface,
VARIANT varID, BSTR *pszDescription)
{
Client *This = impl_from_Client(iface);
FIXME("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDescription);
return E_NOTIMPL;
TRACE("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszDescription);
*pszDescription = NULL;
if(convert_child_id(&varID) != CHILDID_SELF)
return E_INVALIDARG;
return S_FALSE;
}
static HRESULT WINAPI Client_get_accRole(IAccessible *iface, VARIANT varID, VARIANT *pvarRole)
......
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