(self, event)
| 489 | self.lcCharacters.SetColumnWidth(2, wx.LIST_AUTOSIZE) |
| 490 | |
| 491 | def addChar(self, event): |
| 492 | try: |
| 493 | sEsi = Esi.getInstance() |
| 494 | sEsi.login() |
| 495 | except (KeyboardInterrupt, SystemExit): |
| 496 | raise |
| 497 | |
| 498 | def delChar(self, event): |
| 499 | item = self.lcCharacters.GetFirstSelected() |
nothing calls this directly
no test coverage detected