Jacek Caban : mshtml: Make nsIURL::GetParam a stub.

Alexandre Julliard julliard at winehq.org
Tue Nov 8 12:23:12 CST 2011


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Nov  8 16:17:31 2011 +0100

mshtml: Make nsIURL::GetParam a stub.

---

 dlls/mshtml/nsio.c |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/dlls/mshtml/nsio.c b/dlls/mshtml/nsio.c
index f127bbc..aa34ddd 100644
--- a/dlls/mshtml/nsio.c
+++ b/dlls/mshtml/nsio.c
@@ -2333,13 +2333,11 @@ static nsresult NSAPI nsURL_GetParam(nsIURL *iface, nsACString *aParam)
 {
     nsWineURI *This = impl_from_nsIURL(iface);
 
-    TRACE("(%p)->(%p)\n", This, aParam);
+    WARN("(%p)->(%p)\n", This, aParam);
 
-    if(This->nsurl)
-        return nsIURL_GetParam(This->nsurl, aParam);
-
-    FIXME("default action not implemented\n");
-    return NS_ERROR_NOT_IMPLEMENTED;
+    /* This is a leftover of ';' special handling in URLs. It will be removed from Gecko soon */
+    nsACString_SetData(aParam, "");
+    return NS_OK;
 }
 
 static nsresult NSAPI nsURL_SetParam(nsIURL *iface, const nsACString *aParam)




More information about the wine-cvs mailing list