mshtml: Added nsIURI::GetUserPass implementation.

This commit is contained in:
Jacek Caban 2010-09-28 13:26:21 +02:00 committed by Alexandre Julliard
parent 9bb0ecceb5
commit 008c0597c8
1 changed files with 1 additions and 2 deletions

View File

@ -1759,8 +1759,7 @@ static nsresult NSAPI nsURI_GetUserPass(nsIURL *iface, nsACString *aUserPass)
if(This->nsuri)
return nsIURI_GetUserPass(This->nsuri, aUserPass);
FIXME("default action not implemented\n");
return NS_ERROR_NOT_IMPLEMENTED;
return get_uri_string(This, Uri_PROPERTY_USER_INFO, aUserPass);
}
static nsresult NSAPI nsURI_SetUserPass(nsIURL *iface, const nsACString *aUserPass)