Cured BC++ makefile bug; wxGrid fix; updated Motif install.txt

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1011 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-11-17 23:03:15 +00:00
parent 6fb26ea3b3
commit 2243eed573
42 changed files with 73 additions and 50 deletions

View File

@@ -2321,7 +2321,12 @@ void wxGenericGrid::SetGridCursor(int row, int col)
m_wCursorRow = row;
m_wCursorColumn = col;
SetCurrentRect(row, col);
int cw, ch;
GetClientSize(&cw, &ch);
SetCurrentRect(row, col, cw, ch);
if (m_currentRectVisible)
HighlightCell(& dc);