]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
fixed gcc pragmas in fs_*.h,cpp
[wxWidgets.git] / src / generic / grid.cpp
index 5d70eacf514ab8e40e7b79b736efd3540068c2ad..186c7ba70a0a7f421763ee6815a2e6a797c1ee8f 100644 (file)
@@ -3718,7 +3718,7 @@ void wxGrid::CalcDimensions()
 
     // do set scrollbar parameters
     SetScrollbars( GRID_SCROLL_LINE, GRID_SCROLL_LINE,
-                  w, h, x, y, GetBatchCount() );
+                  w, h, x, y, (GetBatchCount() != 0));
 }
 
 
@@ -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 );
 }
 
 //