(self, parent, charEditor)
| 715 | |
| 716 | class ImplantEditorView(BaseImplantEditorView): |
| 717 | def __init__(self, parent, charEditor): |
| 718 | BaseImplantEditorView.__init__(self, parent) |
| 719 | |
| 720 | self.determineEnabled() |
| 721 | charEditor.Bind(GE.CHAR_CHANGED, self.contextChanged) |
| 722 | |
| 723 | self.pluggedImplantsTree.Bind(wx.EVT_CONTEXT_MENU, self.spawnMenu) |
| 724 | |
| 725 | def bindContext(self): |
| 726 | self.Parent.Parent.entityEditor.Bind(wx.EVT_CHOICE, self.contextChanged) |
nothing calls this directly
no test coverage detected