From c81991368794cc13335f62829ea7961123c0e0ce Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Tue, 7 Dec 2021 13:33:08 -0800 Subject: [PATCH] Fix missing mock return --- qa/qa_utils/mocks.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/qa_utils/mocks.cpp b/qa/qa_utils/mocks.cpp index 136ae7df31..a221e10e52 100644 --- a/qa/qa_utils/mocks.cpp +++ b/qa/qa_utils/mocks.cpp @@ -170,6 +170,7 @@ void DIALOG_FIND::OnCloseButtonClick( wxCommandEvent& aEvent ) bool DIALOG_FIND::Show( bool show ) { + return true; } void DIALOG_FIND::OnClose( wxCloseEvent& aEvent )