wrap CollectorModel.insertEvent to update the element count
(self, event)
| 79 | self.updateCount() |
| 80 | |
| 81 | def insertEvent(self, event): |
| 82 | """ |
| 83 | wrap CollectorModel.insertEvent to update the element count |
| 84 | """ |
| 85 | CollectorModel.insertEvent(self, event) |
| 86 | self.updateCount() |
| 87 | |
| 88 | def removeEvent(self, event): |
| 89 | """ |
nothing calls this directly
no test coverage detected