From 4b734d6a0214a2fdc14ee1d518426734205f3ac6 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Fri, 14 Mar 2008 13:29:28 -0700 Subject: [PATCH] quartz: Change some more stubs from traces to fixmes --- dlls/quartz/filtergraph.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 957a119..5165127 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -1621,7 +1621,7 @@ static HRESULT WINAPI MediaControl_RenderFile(IMediaControl *iface, BSTR strFilename) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface); - TRACE("(%p/%p)->(%s (%p)): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename); + FIXME("(%p/%p)->(%s (%p)): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename); return S_OK; } @@ -1631,7 +1631,7 @@ static HRESULT WINAPI MediaControl_AddSourceFilter(IMediaControl *iface, IDispatch **ppUnk) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface); - TRACE("(%p/%p)->(%s (%p), %p): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename, ppUnk); + FIXME("(%p/%p)->(%s (%p), %p): stub !!!\n", This, iface, debugstr_w(strFilename), strFilename, ppUnk); return S_OK; } @@ -1640,7 +1640,7 @@ static HRESULT WINAPI MediaControl_get_FilterCollection(IMediaControl *iface, IDispatch **ppUnk) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface); - TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk); + FIXME("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk); return S_OK; } @@ -1649,7 +1649,7 @@ static HRESULT WINAPI MediaControl_get_RegFilterCollection(IMediaControl *iface, IDispatch **ppUnk) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface); - TRACE("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk); + FIXME("(%p/%p)->(%p): stub !!!\n", This, iface, ppUnk); return S_OK; } @@ -1657,7 +1657,7 @@ static HRESULT WINAPI MediaControl_get_RegFilterCollection(IMediaControl *iface, static HRESULT WINAPI MediaControl_StopWhenReady(IMediaControl *iface) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaControl_vtbl, iface); - TRACE("(%p/%p)->(): stub !!!\n", This, iface); + FIXME("(%p/%p)->(): stub !!!\n", This, iface); return S_OK; } -- 1.5.4.1