Rename wxGridBlockCoords::ContainsCell() and move it inline

Make the function name more grammatically correct.

No real changes.
This commit is contained in:
Vadim Zeitlin
2020-04-04 19:45:19 +02:00
parent 0a5a904d8d
commit a5952ee087
5 changed files with 13 additions and 17 deletions

View File

@@ -61,7 +61,7 @@ bool wxGridSelection::IsInSelection( int row, int col )
const size_t count = m_selection.size();
for ( size_t n = 0; n < count; n++ )
{
if ( m_selection[n].ContainCell(wxGridCellCoords(row, col)) )
if ( m_selection[n].ContainsCell(wxGridCellCoords(row, col)) )
return true;
}