QA tests: fix a few compil issues due to code change.

This commit is contained in:
jean-pierre charras 2021-07-22 18:18:12 +02:00
parent 4319d92a12
commit e35b469f30
3 changed files with 4 additions and 2 deletions

View File

@ -36,6 +36,7 @@
#include <pcbnew/drc/drc_rule_parser.h> #include <pcbnew/drc/drc_rule_parser.h>
#include <pcbnew/drc/drc_test_provider.h> #include <pcbnew/drc/drc_test_provider.h>
#include <pcbnew/pcb_expr_evaluator.h> #include <pcbnew/pcb_expr_evaluator.h>
#include <board_design_settings.h>
#include <kicad_string.h> #include <kicad_string.h>

View File

@ -251,8 +251,9 @@ void DIALOG_FILTER_SELECTION::checkBoxClicked( wxCommandEvent& aEvent )
} }
void DIALOG_FILTER_SELECTION::ExecuteCommand( wxCommandEvent& event ) bool DIALOG_FILTER_SELECTION::TransferDataFromWindow()
{ {
return true;
} }

View File

@ -100,7 +100,7 @@ BOARD* PCB_TEST_FRAME_BASE::LoadAndDisplayBoard( const std::string& filename )
} }
catch( const IO_ERROR& ioe ) catch( const IO_ERROR& ioe )
{ {
printf( "Board Loading Error: '%s'\n", ioe.Problem() ); printf( "Board Loading Error: '%s'\n", static_cast<const char*>( ioe.Problem() ) );
return nullptr; return nullptr;
} }