Added missing not operator that was preventing the drawing of the

gridlines


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-04-08 23:09:46 +00:00
parent 4c82058341
commit afd0f084f4

View File

@ -7290,7 +7290,7 @@ void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) )
return;
#endif
if ( !m_gridLinesEnabled || m_numRows || !m_numCols )
if ( !m_gridLinesEnabled || !m_numRows || !m_numCols )
return;
int top, bottom, left, right;