Disable using nsWebBrowserStream.

This commit is contained in:
Jacek Caban 2005-08-22 10:05:29 +00:00 committed by Alexandre Julliard
parent ebe0484d1a
commit 297aeb5b97
1 changed files with 4 additions and 0 deletions

View File

@ -367,10 +367,14 @@ void HTMLDocument_NSContainer_Init(HTMLDocument *This)
if(NS_FAILED(nsres))
ERR("Could not get nsIWebNavigation interface: %08lx\n", nsres);
#if 0
nsres = nsIWebBrowserStream_QueryInterface(This->nscontainer->webbrowser, &IID_nsIWebBrowserStream,
(void**)&This->nscontainer->stream);
if(NS_FAILED(nsres))
ERR("Could not get nsIWebBrowserStream interface: %08lx\n", nsres);
#else
This->nscontainer->stream = NULL;
#endif
if(!nscontainer_class)
register_nscontainer_class();