(self, event)
| 699 | wx.PostEvent(self, GE.CharListUpdated()) |
| 700 | |
| 701 | def revertChar(self, event): |
| 702 | sChr = Character.getInstance() |
| 703 | charID = self.charSelection.getActiveCharacter() |
| 704 | sChr.revertCharacter(charID) |
| 705 | wx.PostEvent(self, GE.CharListUpdated()) |
| 706 | |
| 707 | def optimizeFitPrice(self, event): |
| 708 | fitID = self.getActiveFit() |
nothing calls this directly
no test coverage detected