From a85245b1c2c2b3f49658b2b49f3cbfc5ff9efdd4 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 1 Aug 2005 06:06:13 +0000 Subject: [PATCH] correcting condition: only interfere in the non-native case git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/frame.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mac/carbon/frame.cpp b/src/mac/carbon/frame.cpp index bb2cea1d90..8bc1e3bdc9 100644 --- a/src/mac/carbon/frame.cpp +++ b/src/mac/carbon/frame.cpp @@ -270,10 +270,9 @@ void wxFrame::DoGetClientSize(int *x, int *y) const } else { -//#if wxMAC_USE_NATIVE_TOOLBAR - // todo verify whether HIToolBox is giving correct sizes here for the tlw +#if !wxMAC_USE_NATIVE_TOOLBAR if ( y ) *y -= h; -//#endif +#endif } } #endif // wxUSE_TOOLBAR -- 2.50.0