mshtml: Get rid of update_nsdocument call in SetStatus hack.

This commit is contained in:
Jacek Caban 2009-10-21 21:29:01 +02:00 committed by Alexandre Julliard
parent 250ec843a5
commit 5b5528f299
1 changed files with 0 additions and 6 deletions

View File

@ -958,13 +958,7 @@ static nsresult NSAPI nsWebBrowserChrome_SetStatus(nsIWebBrowserChrome *iface,
PRUint32 statusType, const PRUnichar *status)
{
NSContainer *This = NSWBCHROME_THIS(iface);
TRACE("(%p)->(%d %s)\n", This, statusType, debugstr_w(status));
/* FIXME: This hack should be removed when we'll load all pages by URLMoniker */
if(This->doc)
update_nsdocument(This->doc);
return NS_OK;
}