From ef39711e3e38d8e89c00a330fa9a574d39f7847d Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 8 Dec 2020 18:34:34 +0000 Subject: [PATCH] Remove accidentally checked-in debuggin code. --- common/widgets/lib_tree.cpp | 12 ------------ common/widgets/lib_tree.h | 3 --- 2 files changed, 15 deletions(-) diff --git a/common/widgets/lib_tree.cpp b/common/widgets/lib_tree.cpp index c67ab600ea..8f68c78d15 100644 --- a/common/widgets/lib_tree.cpp +++ b/common/widgets/lib_tree.cpp @@ -154,18 +154,6 @@ LIB_TREE::~LIB_TREE() } -void LIB_TREE::onFocus( wxFocusEvent& aEvent ) -{ - m_label = "OnFOCUS"; -} - - -void LIB_TREE::onKillFocus( wxFocusEvent& aEvent ) -{ - m_label = "OnKILLFOCUS"; -} - - LIB_ID LIB_TREE::GetSelectedLibId( int* aUnit ) const { auto sel = m_tree_ctrl->GetSelection(); diff --git a/common/widgets/lib_tree.h b/common/widgets/lib_tree.h index cbbd6a9d34..5a5dff2d44 100644 --- a/common/widgets/lib_tree.h +++ b/common/widgets/lib_tree.h @@ -155,9 +155,6 @@ protected: */ void setState( const STATE& aState ); - void onFocus( wxFocusEvent& aEvent ); - void onKillFocus( wxFocusEvent& aEvent ); - void onQueryText( wxCommandEvent& aEvent ); void onQueryEnter( wxCommandEvent& aEvent ); void onQueryCharHook( wxKeyEvent& aEvent );