Thomas Mullaly : urlmon: Silenced a noisy fixme.
Module: wine Branch: master Commit: 9ef60297daf237095130a361379f2c9c6e760aab URL: http://source.winehq.org/git/wine.git/?a=commit;h=9ef60297daf237095130a36137... Author: Thomas Mullaly <thomas.mullaly(a)gmail.com> Date: Thu Jul 29 19:46:37 2010 -0400 urlmon: Silenced a noisy fixme. --- dlls/urlmon/uri.c | 13 ++----------- 1 files changed, 2 insertions(+), 11 deletions(-) diff --git a/dlls/urlmon/uri.c b/dlls/urlmon/uri.c index 63e8626..c825b00 100644 --- a/dlls/urlmon/uri.c +++ b/dlls/urlmon/uri.c @@ -2597,17 +2597,8 @@ static HRESULT WINAPI Uri_GetScheme(IUri *iface, DWORD *pdwScheme) static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone) { - Uri *This = URI_THIS(iface); - FIXME("(%p)->(%p)\n", This, pdwZone); - - if(!pdwZone) - return E_INVALIDARG; - - /* Microsoft doesn't seem to have this implemented yet... See - * the comment in Uri_GetPropertyDWORD for more about this. - */ - *pdwZone = URLZONE_INVALID; - return E_NOTIMPL; + TRACE("(%p)->(%p)\n", iface, pdwZone); + return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_ZONE,pdwZone, 0); } static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)
participants (1)
-
Alexandre Julliard