OSX doesn't get the latest and greatest things
This commit is contained in:
parent
df84a90f6c
commit
d430fae05d
|
@ -108,7 +108,8 @@ wxString GetVersionInfoData( const wxString& aTitle, bool aHtml, bool aBrief )
|
|||
aMsg << eol;
|
||||
|
||||
aMsg << "Platform: " << wxGetOsDescription() << ", "
|
||||
#if wxCHECK_VERSION( 3, 1, 5 )
|
||||
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
|
||||
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
|
||||
<< platform.GetBitnessName() << ", "
|
||||
#else
|
||||
<< platform.GetArchName() << ", "
|
||||
|
|
|
@ -100,7 +100,8 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
|
|||
wxPlatformInfo platformInfo;
|
||||
|
||||
libVersion << "Platform: " << wxGetOsDescription() << ", "
|
||||
#if wxCHECK_VERSION( 3, 1, 5 )
|
||||
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
|
||||
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
|
||||
<< platformInfo.GetBitnessName();
|
||||
#else
|
||||
<< platformInfo.GetArchName();
|
||||
|
|
Loading…
Reference in New Issue