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:
parent
a3b0f9deba
commit
9f0c131ba4
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue