(self, parent)
| 88 | class ImplantSetEditorView(BaseImplantEditorView): |
| 89 | |
| 90 | def __init__(self, parent): |
| 91 | BaseImplantEditorView.__init__(self, parent) |
| 92 | if 'wxMSW' in wx.PlatformInfo: |
| 93 | self.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNFACE)) |
| 94 | |
| 95 | def bindContext(self): |
| 96 | self.Parent.entityEditor.Bind(wx.EVT_CHOICE, self.contextChanged) |
nothing calls this directly
no test coverage detected