]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/grid.h
document the main event table macros, wxEventType, wxNewEventType; create a new group...
[wxWidgets.git] / interface / wx / grid.h
index 057ef18b7f11dd8aae7ce7dc274a0359c806e093..3f04db61a8c06ba779283534c2c69ebbcc9be361 100644 (file)
@@ -673,9 +673,14 @@ public:
     //@{
 
     /**
-        Must be overridden to implement testing for empty cells.
+        May be overridden to implement testing for empty cells.
+
+        This method is used by the grid to test if the given cell is not used
+        and so whether a neighbouring cell may overflow into it. By default it
+        only returns true if the value of the given cell, as returned by
+        GetValue(), is empty.
      */
-    virtual bool IsEmptyCell(int row, int col) = 0;
+    virtual bool IsEmptyCell(int row, int col);
 
     /**
         Same as IsEmptyCell() but taking wxGridCellCoords.