(self, fittingView, params)
| 15 | name = "Base Icon" |
| 16 | |
| 17 | def __init__(self, fittingView, params): |
| 18 | ViewColumn.__init__(self, fittingView) |
| 19 | self.size = 24 |
| 20 | self.maxsize = self.size |
| 21 | self.mask = wx.LIST_MASK_IMAGE |
| 22 | self.columnText = "" |
| 23 | self.shipImage = fittingView.imageList.GetImageIndex("ship_small", "gui") |
| 24 | |
| 25 | def getImageId(self, stuff): |
| 26 | if isinstance(stuff, BaseWrapper): |
nothing calls this directly
no test coverage detected