]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
Initial check in of wxApplet code to CVS
[wxWidgets.git] / src / generic / grid.cpp
index 5d70eacf514ab8e40e7b79b736efd3540068c2ad..c47d42f9c8aa04daedfc8488a7d512967481d341 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));
 }
 
 
@@ -6043,7 +6043,7 @@ void wxGrid::DrawHighlight(wxDC& dc)
 // This is used to redraw all grid lines e.g. when the grid line colour
 // has been changed
 //
-void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED_GTK(reg) )
+void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & WXUNUSED(reg) )
 {
     if ( !m_gridLinesEnabled ||
          !m_numRows ||
@@ -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 );
 }
 
 //