mshtml: Always return fake scheme in nsIURI::GetScheme if use_wine_url is set.

This commit is contained in:
Jacek Caban 2009-11-30 18:01:47 +01:00 committed by Alexandre Julliard
parent 050a1372b0
commit bb60430de4
1 changed files with 1 additions and 1 deletions

View File

@ -1506,7 +1506,7 @@ static nsresult NSAPI nsURI_GetScheme(nsIWineURI *iface, nsACString *aScheme)
TRACE("(%p)->(%p)\n", This, aScheme);
if(This->use_wine_url && strcmpW(This->wine_url, about_blankW)) {
if(This->use_wine_url) {
/*
* For Gecko we set scheme to unknown so it won't be handled
* as any special case.