From 6056c203bdb032a6b9a28e6e062066af08139063 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 19 Sep 2002 05:31:00 +0000 Subject: [PATCH] Added missing ! git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17268 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 29a53903b7..36b7d01c82 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(row, i, &c_rows, &c_cols); if (c_rows > 0) c_rows = 0; - if (grid.GetTable()->IsEmptyCell(row+c_rows, i)) + if (!grid.GetTable()->IsEmptyCell(row+c_rows, i)) { is_empty = FALSE; break;