]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/StaticBitmap.py
reSWIGged
[wxWidgets.git] / wxPython / demo / StaticBitmap.py
index 7bec8cd74cccdd8d09dd3e66c5cd723cbeb81ae1..d45f28b9cd59fe59c26c0ed19f07beb03100ff39 100644 (file)
@@ -13,7 +13,7 @@ class TestPanel(wx.Panel):
         wx.StaticText(self, -1, "This is a wx.StaticBitmap.", (45, 15))
 
         bmp = images.getTest2Bitmap()
-        mask = wx.MaskColour(bmp, wx.BLUE)
+        mask = wx.Mask(bmp, wx.BLUE)
         bmp.SetMask(mask)
         wx.StaticBitmap(self, -1, bmp, (80, 50), (bmp.GetWidth(), bmp.GetHeight()))