Dmitry Timoshkov : gdi32: Remove redundant debug channel, use the default one instead.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jan 2 06:45:54 CST 2007


Module: wine
Branch: master
Commit: 2cbf7d4d91e8f5bfd1c2c5c398dadcb599694d59
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2cbf7d4d91e8f5bfd1c2c5c398dadcb599694d59

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Tue Jan  2 16:25:07 2007 +0800

gdi32: Remove redundant debug channel, use the default one instead.

---

 dlls/gdi32/font.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c
index 22ebd8a..b92ea82 100644
--- a/dlls/gdi32/font.c
+++ b/dlls/gdi32/font.c
@@ -37,7 +37,6 @@
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(font);
-WINE_DECLARE_DEBUG_CHANNEL(gdi);
 
   /* Device -> World size conversion */
 
@@ -3000,8 +2999,8 @@ BOOL WINAPI GetCharABCWidthsFloatW( HDC
 BOOL WINAPI GetCharWidthFloatA(HDC hdc, UINT iFirstChar,
 		                    UINT iLastChar, PFLOAT pxBuffer)
 {
-       FIXME_(gdi)("GetCharWidthFloatA, stub\n");
-       return 0;
+    FIXME("%p, %u, %u, %p: stub!\n", hdc, iFirstChar, iLastChar, pxBuffer);
+    return 0;
 }
 
 /*************************************************************************
@@ -3010,8 +3009,8 @@ BOOL WINAPI GetCharWidthFloatA(HDC hdc,
 BOOL WINAPI GetCharWidthFloatW(HDC hdc, UINT iFirstChar,
 		                    UINT iLastChar, PFLOAT pxBuffer)
 {
-       FIXME_(gdi)("GetCharWidthFloatW, stub\n");
-       return 0;
+    FIXME("%p, %u, %u, %p: stub!\n", hdc, iFirstChar, iLastChar, pxBuffer);
+    return 0;
 }
 
 




More information about the wine-cvs mailing list