(self, event)
| 80 | self.btnOK.Bind(wx.EVT_BUTTON, self.OnBtnOK) |
| 81 | |
| 82 | def OnBtnOK(self, event): |
| 83 | self.Close() |
| 84 | |
| 85 | def kbEvent(self, event): |
| 86 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
nothing calls this directly
no outgoing calls
no test coverage detected