X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1f4ff6ddc69a37e8922b8617e1edec3fd71d670..a0d924c6966edb42be0a2c690ca8cc3bc139b211:/src/cocoa/frame.mm diff --git a/src/cocoa/frame.mm b/src/cocoa/frame.mm index a172504c57..7ed2c50c8f 100644 --- a/src/cocoa/frame.mm +++ b/src/cocoa/frame.mm @@ -165,7 +165,7 @@ void wxFrame::UpdateFrameNSView() [sbarNSView setAutoresizingMask: NSViewWidthSizable|NSViewMaxYMargin]; sbarheight = sbarRect.size.height; } - wxLogDebug("frame height=%f, tbar=%f, sbar=%f",frameRect.size.height,tbarheight,sbarheight); + wxLogTrace(wxTRACE_COCOA,wxT("frame height=%f, tbar=%f, sbar=%f"),frameRect.size.height,tbarheight,sbarheight); NSRect innerRect = [m_cocoaNSView frame]; innerRect.size.height = frameRect.size.height - tbarheight - sbarheight; innerRect.origin.y = sbarheight;