user32: Use wine_dbgstr_rect() to trace a RECT.

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Michael Stefaniuc 2016-04-19 10:50:29 +02:00 committed by Alexandre Julliard
parent 6b16727803
commit 08821df92c
1 changed files with 1 additions and 2 deletions

View File

@ -501,8 +501,7 @@ static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax
lpMinMax->ptMaxPosition.x = rect.left;
lpMinMax->ptMaxPosition.y = rect.top;
TRACE("max rect (%d,%d - %d, %d)\n",
rect.left,rect.top,rect.right,rect.bottom);
TRACE("max rect %s\n", wine_dbgstr_rect(&rect));
}
/**********************************************************************