(self, event)
| 227 | self.updateView() |
| 228 | |
| 229 | def OnProfileChanged(self, event): |
| 230 | if self.containsProfileID(event.profileID): |
| 231 | self.updateView() |
| 232 | |
| 233 | def OnProfileRemoved(self, event): |
| 234 | wrapper = next((w for w in self._wrappers if w.isProfile and w.item.ID == event.profileID), None) |
nothing calls this directly
no test coverage detected