X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8fa876ca9ec87e90605808bfcab4d4226965dbad..9c97d337bfe0482fe5f80588f2ba29446293b39e:/wxPython/demo/GridHugeTable.py diff --git a/wxPython/demo/GridHugeTable.py b/wxPython/demo/GridHugeTable.py index 5e8bf5eb0d..e0fe1e415f 100644 --- a/wxPython/demo/GridHugeTable.py +++ b/wxPython/demo/GridHugeTable.py @@ -1,7 +1,3 @@ -# 11/6/2003 - Jeff Grimmett (grimmtooth@softhome.net) -# -# o Updated for wx namespace -# import wx import wx.grid as gridlib @@ -21,9 +17,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):