From d2121dd3821a0fa4d5187babd8b98a8f42cc93f4 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sat, 21 Sep 2002 00:26:08 +0000 Subject: [PATCH] Fixed yet another part of the typo fixed in 1.232. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17313 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/grid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 8d461af605..1ecb7e28b0 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -1586,7 +1586,7 @@ void wxGridCellStringRenderer::Draw(wxGrid& grid, // check w/ anchor cell for multicell block grid.GetCellSize(j, i, &c_rows, &c_cols); if (c_rows > 0) c_rows = 0; - if (!grid.GetTable()->IsEmptyCell(row+c_rows, i)) + if (!grid.GetTable()->IsEmptyCell(j+c_rows, i)) { is_empty = FALSE; break;