Fixed some typos that occured in applying patch 606235.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1581,9 +1581,9 @@ void wxGridCellStringRenderer::Draw(wxGrid& grid,
|
|||||||
for (int j=row; j<row+cell_rows; j++)
|
for (int j=row; j<row+cell_rows; j++)
|
||||||
{
|
{
|
||||||
// check w/ anchor cell for multicell block
|
// check w/ anchor cell for multicell block
|
||||||
grid.GetCellSize(row, i, &c_rows, &c_cols);
|
grid.GetCellSize(j, i, &c_rows, &c_cols);
|
||||||
if (c_rows > 0) c_rows = 0;
|
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;
|
is_empty = FALSE;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user