Module: wine Branch: master Commit: 02dbe712ee8138f3e3d8dcd4054672c10bbff1ba URL: http://source.winehq.org/git/wine.git/?a=commit;h=02dbe712ee8138f3e3d8dcd405...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Oct 25 08:18:40 2016 +0300
wincodecs: Remove stub message for implemented methods.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Vincent Povirk vincent@codewevers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/windowscodecs/converter.c | 4 ++-- dlls/windowscodecs/icnsformat.c | 2 +- dlls/windowscodecs/tiffformat.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/windowscodecs/converter.c b/dlls/windowscodecs/converter.c index 7ff6bec..e5bce44 100644 --- a/dlls/windowscodecs/converter.c +++ b/dlls/windowscodecs/converter.c @@ -1287,7 +1287,7 @@ static HRESULT WINAPI FormatConverter_GetPixelFormat(IWICFormatConverter *iface, { FormatConverter *This = impl_from_IWICFormatConverter(iface);
- TRACE("(%p,%p): stub\n", iface, pPixelFormat); + TRACE("(%p,%p)\n", iface, pPixelFormat);
if (This->source) memcpy(pPixelFormat, This->dst_format->guid, sizeof(GUID)); @@ -1302,7 +1302,7 @@ static HRESULT WINAPI FormatConverter_GetResolution(IWICFormatConverter *iface, { FormatConverter *This = impl_from_IWICFormatConverter(iface);
- TRACE("(%p,%p,%p): stub\n", iface, pDpiX, pDpiY); + TRACE("(%p,%p,%p)\n", iface, pDpiX, pDpiY);
if (This->source) return IWICBitmapSource_GetResolution(This->source, pDpiX, pDpiY); diff --git a/dlls/windowscodecs/icnsformat.c b/dlls/windowscodecs/icnsformat.c index 552fa39..14144f7 100644 --- a/dlls/windowscodecs/icnsformat.c +++ b/dlls/windowscodecs/icnsformat.c @@ -415,7 +415,7 @@ static HRESULT WINAPI IcnsFrameEncode_Commit(IWICBitmapFrameEncode *iface) OSErr ret; HRESULT hr = S_OK;
- TRACE("(%p): stub\n", iface); + TRACE("(%p)\n", iface);
EnterCriticalSection(&This->encoder->lock);
diff --git a/dlls/windowscodecs/tiffformat.c b/dlls/windowscodecs/tiffformat.c index 1dacd87..0e2a5d5 100644 --- a/dlls/windowscodecs/tiffformat.c +++ b/dlls/windowscodecs/tiffformat.c @@ -626,7 +626,7 @@ static HRESULT WINAPI TiffDecoder_Initialize(IWICBitmapDecoder *iface, IStream * TIFF *tiff; HRESULT hr=S_OK;
- TRACE("(%p,%p,%x): stub\n", iface, pIStream, cacheOptions); + TRACE("(%p,%p,%x)\n", iface, pIStream, cacheOptions);
EnterCriticalSection(&This->lock);