Remove __WXWINDOWS__ defines

__WXWINDOWS__ is for all of our builds.  __WXMSW__ is for windows only
This commit is contained in:
Seth Hillbrand 2023-12-21 08:56:53 -08:00
parent 1700cad83b
commit 5f234211f9
2 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ public:
static wxString GetOSXKicadDataDir();
#endif
#ifdef __WXWINDOWS__
#ifdef __WXMSW__
/**
* @return The directory the font config support files can be found
*/
@ -223,7 +223,7 @@ private:
*/
static void getUserDocumentPath( wxFileName& aPath );
#ifdef __WXWINDOWS__
#ifdef __WXMSW__
/**
* Gets the root of the kicad install on Windows specifically.
* KiCad on Windows has a pseudo posix folder structure contained in its installed folder

View File

@ -176,7 +176,7 @@ void UPDATE_MANAGER::CheckForUpdate( wxWindow* aNoticeParent )
// These platform keys are specific to the downloads site
#if defined( __WXWINDOWS__ )
#if defined( __WXMSW__ )
requestContent.platform = "windows";
#if defined( KICAD_BUILD_ARCH_X64 )