(self, parent, id, bitmap, pos, size, style)
| 4 | |
| 5 | class PFGenBitmapButton(GenBitmapButton): |
| 6 | def __init__(self, parent, id, bitmap, pos, size, style): |
| 7 | GenBitmapButton.__init__(self, parent, id, bitmap, pos, size, style) |
| 8 | self.bgcolor = wx.Brush(wx.WHITE) |
| 9 | |
| 10 | def SetBackgroundColour(self, color): |
| 11 | self.bgcolor = wx.Brush(color) |
nothing calls this directly
no outgoing calls
no test coverage detected