]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridHugeTable.py
doc tweaks, typo fixed, etc.
[wxWidgets.git] / wxPython / demo / GridHugeTable.py
index 5e8bf5eb0db3efa84dd59aed01df4444bf148dcf..078af65beea4cf6d28143c4947c1e00ee7f6d308 100644 (file)
@@ -21,9 +21,9 @@ class HugeTable(gridlib.PyGridTableBase):
         gridlib.PyGridTableBase.__init__(self)
         self.log = log
 
-        self.odd=wxGridCellAttr()
+        self.odd=gridlib.GridCellAttr()
         self.odd.SetBackgroundColour("sky blue")
-        self.even=wxGridCellAttr()
+        self.even=gridlib.GridCellAttr()
         self.even.SetBackgroundColour("sea green")
 
     def GetAttr(self, row, col, kind):