Browse Source

wxPython ruins everything...

They really should just use a released version of wxWidgets
in their released versions and not some random commit from
the development tree.
6.0.7
Ian McInerney 5 years ago
parent
commit
2da2b00560
  1. 4
      common/build_version.cpp
  2. 4
      common/dialog_about/AboutDialog_main.cpp

4
common/build_version.cpp

@ -108,8 +108,8 @@ wxString GetVersionInfoData( const wxString& aTitle, bool aHtml, bool aBrief )
aMsg << eol;
aMsg << "Platform: " << wxGetOsDescription() << ", "
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
// TODO (ISM): Readd conditional once our wx fork and flatpaks are running released 3.1.5
#if 0 && wxCHECK_VERSION( 3, 1, 5 )
<< platform.GetBitnessName() << ", "
#else
<< platform.GetArchName() << ", "

4
common/dialog_about/AboutDialog_main.cpp

@ -100,8 +100,8 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
wxPlatformInfo platformInfo;
libVersion << "Platform: " << wxGetOsDescription() << ", "
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
// TODO (ISM): Readd conditional once our wx fork and flatpaks are running released 3.1.5
#if 0 && wxCHECK_VERSION( 3, 1, 5 )
<< platformInfo.GetBitnessName();
#else
<< platformInfo.GetArchName();

Loading…
Cancel
Save