Use the correct define for windows

This commit is contained in:
Marek Roszko 2021-09-05 22:22:27 -04:00
parent 0ee79834bb
commit 525099ea06
2 changed files with 2 additions and 2 deletions

View File

@ -1258,7 +1258,7 @@ void EDA_BASE_FRAME::onSystemColorChange( wxSysColourChangedEvent& aEvent )
}
#ifdef __WXWINDOWS__
#ifdef _WIN32
WXLRESULT EDA_BASE_FRAME::MSWWindowProc( WXUINT message, WXWPARAM wParam, WXLPARAM lParam )
{
// This will help avoid the menu keeping focus when the alt key is released

View File

@ -682,7 +682,7 @@ private:
*/
virtual bool IsModal() const { return false; }
#ifdef __WXWINDOWS__
#ifdef _WIN32
/**
* Windows specific override of the wxWidgets message handler for a window
*/