]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/grid.cpp
toplevel background behaviour changed
[wxWidgets.git] / src / generic / grid.cpp
index 712326e6117a69a89a17e30c1d71932489d9b56a..48ff5cf934eb196527c34fcb5a18bacbe3428c3a 100644 (file)
@@ -10196,7 +10196,7 @@ wxRect wxGrid::BlockToDeviceRect( const wxGridCellCoords &topLeft,
     }
     else
     {
-        rect = wxRect( 0, 0, 0, 0 );
+        rect = wxRect();
     }
 
     cellRect = CellToRect( bottomRight );
@@ -10271,7 +10271,7 @@ wxRect wxGrid::BlockToDeviceRect( const wxGridCellCoords &topLeft,
     m_gridWin->GetClientSize( &cw, &ch );
 
     if (right < 0 || bottom < 0 || left > cw || top > ch)
-        return wxRect( 0, 0, 0, 0);
+        return wxRect();
 
     rect.SetLeft( wxMax(0, left) );
     rect.SetTop( wxMax(0, top) );