Use recent wxWidgets headers (which are backward-compatible).

Fixes: lp:1817965
* https://bugs.launchpad.net/kicad/+bug/1817965
This commit is contained in:
Jeff Young 2019-03-04 12:25:54 +00:00
parent cedef13bb1
commit 49aa2503a0
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ bool GRID_TRICKS::toggleCell( int aRow, int aCol )
bool GRID_TRICKS::showEditor( int aRow, int aCol )
{
if( m_grid->GetCursorRow() != aRow || m_grid->GetCursorColumn() != aCol )
if( m_grid->GetGridCursorRow() != aRow || m_grid->GetGridCursorCol() != aCol )
m_grid->SetGridCursor( aRow, aCol );
if( m_grid->IsEditable() && !m_grid->IsReadOnly( aRow, aCol ) )