mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1210549 - Allow IServiceProvider::QueryService to work for proxied accessibles r=tbsaunde
This commit is contained in:
parent
f41c6c4c6c
commit
70a159051f
@ -123,7 +123,7 @@ AccessibleWrap::QueryInterface(REFIID iid, void** ppv)
|
||||
return E_NOINTERFACE;
|
||||
|
||||
*ppv = static_cast<IEnumVARIANT*>(new ChildrenEnumVariant(this));
|
||||
} else if (IID_IServiceProvider == iid && !IsProxy())
|
||||
} else if (IID_IServiceProvider == iid)
|
||||
*ppv = new ServiceProvider(this);
|
||||
else if (IID_ISimpleDOMNode == iid && !IsProxy()) {
|
||||
if (IsDefunct() || (!HasOwnContent() && !IsDoc()))
|
||||
|
Loading…
Reference in New Issue
Block a user