]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
Too quick a trigger finger first time. Compile error fixed.
[wxWidgets.git] / src / generic / grid.cpp
index d653d727ee7c86f00e168c01a113ceaf55514f75..186c7ba70a0a7f421763ee6815a2e6a797c1ee8f 100644 (file)
@@ -8345,7 +8345,8 @@ void wxGrid::SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol,
 
 void wxGrid::SelectAll()
 {
-    m_selection->SelectBlock( 0, 0, m_numRows-1, m_numCols-1 );
+    if ( m_numRows > 0 && m_numCols > 0 )
+        m_selection->SelectBlock( 0, 0, m_numRows-1, m_numCols-1 );
 }
 
 //