+ if (checkSelection)
+ {
+ // If the newly set table is smaller than the
+ // original one current cell and selection regions
+ // might be invalid,
+ m_selectingKeyboard = wxGridNoCellCoords;
+ m_currentCellCoords =
+ wxGridCellCoords(wxMin(m_numRows, m_currentCellCoords.GetRow()),
+ wxMin(m_numCols, m_currentCellCoords.GetCol()));
+ if (m_selectingTopLeft.GetRow() >= m_numRows ||
+ m_selectingTopLeft.GetCol() >= m_numCols)
+ {
+ m_selectingTopLeft = wxGridNoCellCoords;
+ m_selectingBottomRight = wxGridNoCellCoords;
+ }
+ else
+ m_selectingBottomRight =
+ wxGridCellCoords(wxMin(m_numRows,
+ m_selectingBottomRight.GetRow()),
+ wxMin(m_numCols,
+ m_selectingBottomRight.GetCol()));
+ }