bug 1215657 - make AccessibleWrap::accDoDefaultAction work with proxies r=davidb

This commit is contained in:
Trevor Saunders 2015-10-16 14:26:33 -04:00
parent 5dbd682470
commit 66b5c512e6

View File

@ -1134,7 +1134,7 @@ AccessibleWrap::accDoDefaultAction(
// TODO make this work with proxies.
if (xpAccessible->IsProxy())
return E_NOTIMPL;
return xpAccessible->Proxy()->DoAction(0) ? S_OK : E_INVALIDARG;
return xpAccessible->DoAction(0) ? S_OK : E_INVALIDARG;