Remove shadow member variable.

Fixes https://gitlab.com/kicad/code/kicad/issues/12830
This commit is contained in:
Jeff Young 2022-11-05 11:05:36 +00:00
parent 7b0535e63f
commit 0883c0ae64
2 changed files with 0 additions and 2 deletions

View File

@ -66,7 +66,6 @@ DIALOG_DRC::DIALOG_DRC( PCB_EDIT_FRAME* aEditorFrame, wxWindow* aParent ) :
DIALOG_DRC_BASE( aParent ),
PROGRESS_REPORTER_BASE( 1 ),
m_running( false ),
m_cancelled( false ),
m_drcRun( false ),
m_footprintTestsRun( false ),
m_markersTreeModel( nullptr ),

View File

@ -120,7 +120,6 @@ private:
BOARD* m_currentBoard; // the board currently on test
PCB_EDIT_FRAME* m_frame;
bool m_running;
std::atomic<bool> m_cancelled;
bool m_drcRun;
bool m_footprintTestsRun;