]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/grid.h
Removed unused comment
[wxWidgets.git] / interface / wx / grid.h
index 10d96fc53080ad8bb1fb211f3763a5b6de8fbe0a..fdd1ee05b61ceef5af79d04f02dc975073fe90ca 100644 (file)
@@ -101,6 +101,14 @@ public:
     /// Must be overridden to implement testing for empty cells.
     virtual bool IsEmptyCell(int row, int col) = 0;
 
+    /**
+        Same as IsEmptyCell() but taking wxGridCellCoords.
+
+        Notice that this method is not virtual, only IsEmptyCell() should be
+        overridden.
+     */
+    bool IsEmpty(const wxGridCellCoords& coords);
+
     /// Must be overridden to implement accessing the table values as text.
     virtual wxString GetValue(int row, int col) = 0;