fix missing parenthesis in a "#if defined (__WXMAC__)" block

This commit is contained in:
metacollin 2017-09-01 11:15:25 +02:00 committed by jean-pierre charras
parent 1c617b9f56
commit a490144183
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ void PGM_KICAD::MacOpenFile( const wxString& aFileName )
KICAD_MANAGER_FRAME* frame = (KICAD_MANAGER_FRAME*) App().GetTopWindow();
if( !aFileName.empty && wxFileExists( aFileName ) )
if( !aFileName.empty() && wxFileExists( aFileName ) )
frame->LoadProject( wxFileName( aFileName ) );
#endif