QA tests: fix a few compil issues due to code change.
This commit is contained in:
parent
4319d92a12
commit
e35b469f30
|
@ -36,6 +36,7 @@
|
|||
#include <pcbnew/drc/drc_rule_parser.h>
|
||||
#include <pcbnew/drc/drc_test_provider.h>
|
||||
#include <pcbnew/pcb_expr_evaluator.h>
|
||||
#include <board_design_settings.h>
|
||||
|
||||
#include <kicad_string.h>
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ BOARD* PCB_TEST_FRAME_BASE::LoadAndDisplayBoard( const std::string& filename )
|
|||
}
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue