mshtml: Forward GetAsciiSpec to GetSpec.

This commit is contained in:
Jacek Caban 2007-02-10 19:02:02 +01:00 committed by Alexandre Julliard
parent 693e62c858
commit 82adfaaef9
1 changed files with 4 additions and 1 deletions

View File

@ -1500,10 +1500,13 @@ static nsresult NSAPI nsURI_GetAsciiSpec(nsIWineURI *iface, nsACString *aAsciiSp
TRACE("(%p)->(%p)\n", This, aAsciiSpec);
if(This->wine_url)
return nsIURI_GetSpec(NSURI(This), aAsciiSpec);
if(This->uri)
return nsIURI_GetAsciiSpec(This->uri, aAsciiSpec);
FIXME("default action not implemented\n");
TRACE("returning error\n");
return NS_ERROR_NOT_IMPLEMENTED;
}