Module: wine Branch: refs/heads/master Commit: 78c287f12a3ba313be98efd6d6a1790f151f729e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=78c287f12a3ba313be98efd6...
Author: Jacek Caban jacek@codeweavers.com Date: Sun Jun 25 14:13:11 2006 +0200
mshtml: Call OnStopRequest in OnStopBinding.
---
dlls/mshtml/navigate.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c index f12183f..685710a 100644 --- a/dlls/mshtml/navigate.c +++ b/dlls/mshtml/navigate.c @@ -293,7 +293,13 @@ static HRESULT WINAPI BindStatusCallback 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; }