Fix compile issue on Linux

This commit is contained in:
Seth Hillbrand 2019-03-04 06:11:44 -08:00
parent 49aa2503a0
commit a7f3462637
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ bool GRID_TRICKS::showEditor( int aRow, int aCol )
{
wxArrayInt rows = m_grid->GetSelectedRows();
if( rows.size() != 1 || rows.at( 0 ) != aRow )
if( rows.size() != 1 || rows.Item( 0 ) != aRow )
m_grid->SelectRow( aRow );
}