projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed memory leak in wxNativeFontInfo when using Pango
[wxWidgets.git]
/
wxPython
/
demo
/
GridHugeTable.py
diff --git
a/wxPython/demo/GridHugeTable.py
b/wxPython/demo/GridHugeTable.py
index 5e8bf5eb0db3efa84dd59aed01df4444bf148dcf..e0fe1e415f222e41f8d61663cfd60f6a9f7ae2e8 100644
(file)
--- 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
import wx
import wx.grid as gridlib
@@
-21,9
+17,9
@@
class HugeTable(gridlib.PyGridTableBase):
gridlib.PyGridTableBase.__init__(self)
self.log = log
gridlib.PyGridTableBase.__init__(self)
self.log = log
- self.odd=
wx
GridCellAttr()
+ self.odd=
gridlib.
GridCellAttr()
self.odd.SetBackgroundColour("sky blue")
self.odd.SetBackgroundColour("sky blue")
- self.even=
wx
GridCellAttr()
+ self.even=
gridlib.
GridCellAttr()
self.even.SetBackgroundColour("sea green")
def GetAttr(self, row, col, kind):
self.even.SetBackgroundColour("sea green")
def GetAttr(self, row, col, kind):