mshtml: Call OnStopRequest in OnStopBinding.

This commit is contained in:
Jacek Caban 2006-06-25 14:13:11 +02:00 committed by Alexandre Julliard
parent 6c1e595c21
commit 78c287f12a
1 changed files with 7 additions and 1 deletions

View File

@ -293,7 +293,13 @@ static HRESULT WINAPI BindStatusCallback_OnStopBinding(IBindStatusCallback *ifac
HRESULT hresult, LPCWSTR szError)
{
BSCallback *This = STATUSCLB_THIS(iface);
FIXME("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
TRACE("(%p)->(%08lx %s)\n", This, hresult, debugstr_w(szError));
if(This->nslistener)
nsIStreamListener_OnStopRequest(This->nslistener, (nsIRequest*)NSCHANNEL(This->nschannel),
This->nscontext, NS_OK);
return S_OK;
}