diff --git a/qa/drc_proto/drc_proto.cpp b/qa/drc_proto/drc_proto.cpp index eb782916bb..83f7eedd1e 100644 --- a/qa/drc_proto/drc_proto.cpp +++ b/qa/drc_proto/drc_proto.cpp @@ -36,6 +36,7 @@ #include #include #include +#include #include diff --git a/qa/qa_utils/mocks.cpp b/qa/qa_utils/mocks.cpp index 35bfa47d77..25f543024f 100644 --- a/qa/qa_utils/mocks.cpp +++ b/qa/qa_utils/mocks.cpp @@ -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; } diff --git a/qa/qa_utils/pcb_test_frame.cpp b/qa/qa_utils/pcb_test_frame.cpp index 7c14e27364..68ab58bc53 100644 --- a/qa/qa_utils/pcb_test_frame.cpp +++ b/qa/qa_utils/pcb_test_frame.cpp @@ -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( ioe.Problem() ) ); return nullptr; }