← Back to team overview

kicad-developers team mailing list archive

[PATCH 12/14] CHECK: Fully handle event in derived class.

 

---
 eeschema/dialogs/dialog_rescue_each.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eeschema/dialogs/dialog_rescue_each.cpp b/eeschema/dialogs/dialog_rescue_each.cpp
index c2065fd..5566240 100644
--- a/eeschema/dialogs/dialog_rescue_each.cpp
+++ b/eeschema/dialogs/dialog_rescue_each.cpp
@@ -290,7 +290,7 @@ void DIALOG_RESCUE_EACH::OnNeverShowClick( wxCommandEvent& aEvent )
 void DIALOG_RESCUE_EACH::OnCancelClick( wxCommandEvent& aEvent )
 {
     m_Rescuer->m_chosen_candidates.clear();
-    DIALOG_RESCUE_EACH_BASE::OnCancelClick( aEvent );
+    aEvent.Skip();
 }
 
 

Follow ups

References