Module: wine Branch: master Commit: db8159ee89649954620169da7b168c8b71d61395 URL: http://source.winehq.org/git/wine.git/?a=commit;h=db8159ee89649954620169da7b... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Wed Apr 20 10:37:03 2016 +0200 mshtml: Use wine_dbgstr_rect() to trace RECTs. Signed-off-by: Michael Stefaniuc <mstefani(a)redhat.de> Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/view.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/mshtml/view.c b/dlls/mshtml/view.c index 43ea3e3..8ca3caf 100644 --- a/dlls/mshtml/view.c +++ b/dlls/mshtml/view.c @@ -250,9 +250,8 @@ static HRESULT activate_window(HTMLDocumentObj *This) return hres; } - TRACE("got window context: %p %p {%d %d %d %d} {%d %d %d %d} {%d %x %p %p %d}\n", - pIPFrame, This->ip_window, posrect.left, posrect.top, posrect.right, posrect.bottom, - cliprect.left, cliprect.top, cliprect.right, cliprect.bottom, + TRACE("got window context: %p %p %s %s {%d %x %p %p %d}\n", + pIPFrame, This->ip_window, wine_dbgstr_rect(&posrect), wine_dbgstr_rect(&cliprect), frameinfo.cb, frameinfo.fMDIApp, frameinfo.hwndFrame, frameinfo.haccel, frameinfo.cAccelEntries); hres = IOleInPlaceSite_GetWindow(This->ipsite, &parent_hwnd);