(self, event)
| 694 | wx.PostEvent(self, GE.CharListUpdated()) |
| 695 | |
| 696 | def saveCharAs(self, event): |
| 697 | charID = self.charSelection.getActiveCharacter() |
| 698 | CharacterEditor.SaveCharacterAs(self, charID) |
| 699 | wx.PostEvent(self, GE.CharListUpdated()) |
| 700 | |
| 701 | def revertChar(self, event): |
| 702 | sChr = Character.getInstance() |
nothing calls this directly
no test coverage detected