(itemObject: GObject)
| 281 | } |
| 282 | |
| 283 | private onClickItem(itemObject: GObject): void { |
| 284 | Timer.inst.callLater(this, () => this.handleItemClick(itemObject)); |
| 285 | } |
| 286 | |
| 287 | private handleItemClick(itemObject: GObject): void { |
| 288 | if (!(itemObject instanceof GButton)) { |
nothing calls this directly
no test coverage detected