Ken Thomases : winemac: Improve the debug tracing in macdrv_SetWindowStyle( ).

Alexandre Julliard julliard at winehq.org
Tue Jun 4 15:48:35 CDT 2013


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

Author: Ken Thomases <ken at codeweavers.com>
Date:   Tue Jun  4 04:59:47 2013 -0500

winemac: Improve the debug tracing in macdrv_SetWindowStyle().

---

 dlls/winemac.drv/window.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/winemac.drv/window.c b/dlls/winemac.drv/window.c
index 77d2ea0..eacc0b6 100644
--- a/dlls/winemac.drv/window.c
+++ b/dlls/winemac.drv/window.c
@@ -962,7 +962,7 @@ void CDECL macdrv_SetWindowStyle(HWND hwnd, INT offset, STYLESTRUCT *style)
 {
     struct macdrv_win_data *data;
 
-    TRACE("%p, %d, %p\n", hwnd, offset, style);
+    TRACE("hwnd %p offset %d styleOld 0x%08x styleNew 0x%08x\n", hwnd, offset, style->styleOld, style->styleNew);
 
     if (hwnd == GetDesktopWindow()) return;
     if (!(data = get_win_data(hwnd))) return;




More information about the wine-cvs mailing list