(index: number, bDispose?: boolean)
| 249 | } |
| 250 | |
| 251 | public removeChildAt(index: number, bDispose?: boolean): GObject { |
| 252 | const child = super.removeChildAt(index, bDispose); |
| 253 | if (!bDispose) { |
| 254 | child.off(FGUIEvents.CLICK, this._onClickItem, this); |
| 255 | } |
| 256 | return child; |
| 257 | } |
| 258 | |
| 259 | public removeChildToPoolAt(index: number): void { |
| 260 | const child = super.removeChildAt(index); |
no test coverage detected