(self, event)
| 227 | wx.PostEvent(self, GE.CharListUpdated()) |
| 228 | |
| 229 | def saveCharAs(self, event): |
| 230 | char = self.entityEditor.getActiveEntity() |
| 231 | self.SaveCharacterAs(self, char.ID) |
| 232 | wx.PostEvent(self, GE.CharListUpdated()) |
| 233 | |
| 234 | def revertChar(self, event): |
| 235 | sChr = Character.getInstance() |
nothing calls this directly
no test coverage detected