(self, event)
| 81 | event.Skip() |
| 82 | |
| 83 | def OnLogin(self, event): |
| 84 | # This would normally happen if it was logged in via server auto-login. In this case, the modal is done, we effectively want to cancel out |
| 85 | self.EndModal(wx.ID_CANCEL) |
| 86 | event.Skip() |
| 87 | |
| 88 | def OnDestroy(self, event): |
| 89 | # Clean up by unbinding some events and stopping the server |
nothing calls this directly
no outgoing calls
no test coverage detected