Remove __WXWINDOWS__ defines
__WXWINDOWS__ is for all of our builds. __WXMSW__ is for windows only
This commit is contained in:
parent
1700cad83b
commit
5f234211f9
|
@ -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
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue