From: Dimitri Schoolwerth Date: Sat, 14 Feb 2004 02:40:59 +0000 (+0000) Subject: Simplified OS X Panther detection code. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/78ca56690e93e14af43f5b6f090f474a0ff7d736 Simplified OS X Panther detection code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25797 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/sizer.cpp b/src/common/sizer.cpp index 0e9587b451..f077fcd102 100644 --- a/src/common/sizer.cpp +++ b/src/common/sizer.cpp @@ -27,6 +27,10 @@ #include "wx/notebook.h" #include "wx/listimpl.cpp" +#ifdef __WXMAC__ +# include "wx/mac/uma.h" +#endif + //--------------------------------------------------------------------------- IMPLEMENT_CLASS(wxSizerItem, wxObject) @@ -1555,15 +1559,11 @@ static void GetStaticBoxBorders( wxStaticBox *box, if ( extraTop == -1 ) { - int verMaj, verMin; - (void) ::wxGetOsVersion(&verMaj, &verMin); - // The minimal border used for the top. Later on the staticbox' // font height is added to this. extraTop = 0; - // Is the Mac OS version OS X Panther or higher? - if ( ((verMaj << 16) + verMin) >= 0x00100030 ) + if ( UMAGetSystemVersion() >= 0x1030 /*Panther*/ ) { // As indicated by the HIG, Panther needs an extra border of 11 // pixels (otherwise overlapping occurs at the top). The "other"