Remove unused variable.

This commit is contained in:
Jeff Young 2021-09-24 16:03:13 +01:00
parent 8eb2e986cf
commit c7f098ab25
2 changed files with 0 additions and 4 deletions

View File

@ -36,7 +36,6 @@ FOOTPRINT_SELECT_WIDGET::FOOTPRINT_SELECT_WIDGET( EDA_DRAW_FRAME* aFrame, wxWind
FOOTPRINT_LIST* aFpList, bool aUpdate,
int aMaxItems ) :
wxPanel( aParent ),
m_kiway( nullptr ),
m_update( aUpdate ),
m_max_items( aMaxItems ),
m_fp_list( aFpList )
@ -56,8 +55,6 @@ FOOTPRINT_SELECT_WIDGET::FOOTPRINT_SELECT_WIDGET( EDA_DRAW_FRAME* aFrame, wxWind
void FOOTPRINT_SELECT_WIDGET::Load( KIWAY& aKiway, PROJECT& aProject )
{
m_kiway = &aKiway;
try
{
m_fp_list = FOOTPRINT_LIST::GetInstance( aKiway );

View File

@ -123,7 +123,6 @@ public:
virtual bool Enable( bool aEnable = true ) override;
private:
KIWAY* m_kiway;
FOOTPRINT_CHOICE* m_fp_sel_ctrl;
wxSizer* m_sizer;