urlmon: Silenced a noisy fixme.

This commit is contained in:
Thomas Mullaly 2010-07-29 19:46:37 -04:00 committed by Alexandre Julliard
parent 9f41866e6f
commit 9ef60297da
1 changed files with 2 additions and 11 deletions

View File

@ -2597,17 +2597,8 @@ static HRESULT WINAPI Uri_GetScheme(IUri *iface, DWORD *pdwScheme)
static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone) static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone)
{ {
Uri *This = URI_THIS(iface); TRACE("(%p)->(%p)\n", iface, pdwZone);
FIXME("(%p)->(%p)\n", This, pdwZone); return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_ZONE,pdwZone, 0);
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;
} }
static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties) static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)