(self, width, height)
| 25 | |
| 26 | class CachingImageList(wx.ImageList): |
| 27 | def __init__(self, width, height): |
| 28 | wx.ImageList.__init__(self, width, height) |
| 29 | self.map = {} |
| 30 | |
| 31 | def GetImageIndex(self, *loaderArgs): |
| 32 | id_ = self.map.get(loaderArgs) |
nothing calls this directly
no outgoing calls
no test coverage detected