]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/gizmos/multicell.cpp
fix for preserving the clip rgn (control redraws missing after switch to faster redra...
[wxWidgets.git] / contrib / src / gizmos / multicell.cpp
index 39bd0d1548d46164d40adae0c524d5490497e4a4..49ece0103f2be182c5ca237f52e97cc65d581cb3 100644 (file)
@@ -634,9 +634,10 @@ wxMultiCellCanvas :: wxMultiCellCanvas(wxWindow *par, int numRows, int numCols)
 //---------------------------------------------------------------------------
 void wxMultiCellCanvas :: Add(wxWindow *win, unsigned int row, unsigned int col)
 {
-       wxASSERT_MSG(row >= 0 && row < m_maxRows,
+  // thanks to unsigned data row and col are always >= 0
+       wxASSERT_MSG( /* row >= 0 && */ row < m_maxRows,
                  wxString::Format(_T("Row %d out of bounds (0..%d)"), row, m_maxRows) );
-       wxASSERT_MSG(col >= 0 && col < m_maxCols,
+       wxASSERT_MSG( /* col >= 0 && */ col < m_maxCols,
                  wxString::Format(_T("Column %d out of bounds (0..%d)"), col, m_maxCols) );
 
        wxASSERT_MSG(m_cells[CELL_LOC(row, col)] == NULL, wxT("Cell already occupied"));