Fix build error on non-macos builds.

This commit is contained in:
Wayne Stambaugh 2019-12-22 07:38:50 -05:00
parent 5ed074b5c5
commit 18ff60fbb9
1 changed files with 2 additions and 0 deletions

View File

@ -289,10 +289,12 @@ struct APP_KICAD : public wxApp
*
* @see http://wiki.wxwidgets.org/WxMac-specific_topics
*/
#if defined( __WXMAC__ )
void MacOpenFile( const wxString& aFileName ) override
{
Pgm().MacOpenFile( aFileName );
}
#endif
};
IMPLEMENT_APP( APP_KICAD )