Module: wine Branch: master Commit: c6e1a0c81e8ffd9f0ee7d7fabae24b470ce55285 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c6e1a0c81e8ffd9f0ee7d7faba...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Sep 29 12:45:59 2010 +0200
mshtml: Added nsIURI::GetPath 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 137b6fb..d67c7b7 100644 --- a/dlls/mshtml/nsio.c +++ b/dlls/mshtml/nsio.c @@ -1928,8 +1928,7 @@ static nsresult NSAPI nsURI_GetPath(nsIURL *iface, nsACString *aPath) if(This->nsuri) return nsIURI_GetPath(This->nsuri, aPath);
- FIXME("default action not implemented\n"); - return NS_ERROR_NOT_IMPLEMENTED; + return get_uri_string(This, Uri_PROPERTY_PATH, aPath); }
static nsresult NSAPI nsURI_SetPath(nsIURL *iface, const nsACString *aPath)