From a7f3462637a76c5515f70fa3fce41ee8652161c6 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 4 Mar 2019 06:11:44 -0800 Subject: [PATCH] Fix compile issue on Linux --- common/grid_tricks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/grid_tricks.cpp b/common/grid_tricks.cpp index ea0cae38d8..f56b2c7f18 100644 --- a/common/grid_tricks.cpp +++ b/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 ); }