Module: wine Branch: master Commit: 456211e30735b02be37046bbd51a3c754409401a URL: http://source.winehq.org/git/wine.git/?a=commit;h=456211e30735b02be37046bbd5...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Oct 25 08:21:27 2016 +0300
uxtheme: Remove stub message for implemented functions.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/uxtheme/draw.c | 2 +- dlls/uxtheme/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/uxtheme/draw.c b/dlls/uxtheme/draw.c index 8f0eabe..2a37a56 100644 --- a/dlls/uxtheme/draw.c +++ b/dlls/uxtheme/draw.c @@ -2016,7 +2016,7 @@ HRESULT WINAPI GetThemeTextExtent(HTHEME hTheme, HDC hdc, int iPartId, LOGFONTW logfont; RECT rt = {0,0,0xFFFF,0xFFFF};
- TRACE("%d %d: stub\n", iPartId, iStateId); + TRACE("%d %d\n", iPartId, iStateId); if(!hTheme) return E_HANDLE;
diff --git a/dlls/uxtheme/main.c b/dlls/uxtheme/main.c index 5c0acf1..73894e8 100644 --- a/dlls/uxtheme/main.c +++ b/dlls/uxtheme/main.c @@ -35,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(uxtheme); /* For the moment, do nothing here. */ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) { - TRACE("%p 0x%x %p: stub\n", hInstDLL, fdwReason, lpv); + TRACE("%p 0x%x %p\n", hInstDLL, fdwReason, lpv); switch(fdwReason) { case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(hInstDLL);