зеркало из https://github.com/mozilla/pjs.git
Fixed problem with GetIDispatch
This commit is contained in:
Родитель
1158975bc3
Коммит
fba85d5257
|
@ -45,7 +45,13 @@ HRESULT CIEHtmlDocument::GetIDispatch(IDispatch **pDispatch)
|
|||
{
|
||||
return E_INVALIDARG;
|
||||
}
|
||||
return QueryInterface(IID_IDispatch, (void **) pDispatch);
|
||||
|
||||
IDispatch *pDisp = (IDispatch *) this;
|
||||
NG_ASSERT(pDisp);
|
||||
pDisp->AddRef();
|
||||
*pDispatch = pDisp;
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче