Jacek Caban : mshtml: Added nsIURI::GetUserPass implementation.

Alexandre Julliard julliard at winehq.org
Tue Sep 28 11:13:40 CDT 2010


Module: wine
Branch: master
Commit: 008c0597c8f5e430f35130480fa021496b927e63
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=008c0597c8f5e430f35130480fa021496b927e63

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Sep 28 13:26:21 2010 +0200

mshtml: Added nsIURI::GetUserPass implementation.

---

 dlls/mshtml/nsio.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c
index 64c5696..df8f148 100644
--- a/dlls/mshtml/nsio.c
+++ b/dlls/mshtml/nsio.c
@@ -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)




More information about the wine-cvs mailing list