Just a little cleanup and comments

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-02-06 08:04:27 +00:00
parent 26975f4bff
commit a7492f279e
2 changed files with 7 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ import random
def makeBlank(self):
# Just a little helper function to make an empty image for our
# model to use.
empty = wx.EmptyBitmap(16,16,32)
empty = wx.Bitmap(16,16,32)
dc = wx.MemoryDC(empty)
dc.SetBackground(wx.Brush((0,0,0,0)))
dc.Clear()