Browse Source

Fix compile issue on Linux

pull/13/head
Seth Hillbrand 7 years ago
parent
commit
a7f3462637
  1. 2
      common/grid_tricks.cpp

2
common/grid_tricks.cpp

@ -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 );
}

Loading…
Cancel
Save