Fix build error in DIALOG_BOARD_STATISTICS

When passing the functions into the wxEventHandler setup functions
they must be fully qualified with the class name.
This commit is contained in:
Ian McInerney 2019-11-11 10:48:03 +00:00
parent a3b0f9deba
commit 9f0c131ba4
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
m_parentFrame = aParentFrame;
m_gridDrills->UseNativeColHeader();
m_gridDrills->Connect( wxEVT_GRID_COL_SORT, wxGridEventHandler( drillGridSort ), NULL, this );
m_gridDrills->Connect( wxEVT_GRID_COL_SORT, wxGridEventHandler( DIALOG_BOARD_STATISTICS::drillGridSort ), NULL, this );
m_checkBoxExcludeComponentsNoPins->SetValue( s_savedDialogState.excludeNoPins );
m_checkBoxSubtractHoles->SetValue( s_savedDialogState.subtractHoles );