winemac: Improve the debug tracing in macdrv_SetWindowStyle().

This commit is contained in:
Ken Thomases 2013-06-04 04:59:47 -05:00 committed by Alexandre Julliard
parent f57db8a3de
commit f010a930df
1 changed files with 1 additions and 1 deletions

View File

@ -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;