(child: QWidget<any>, beforeChild: QWidget<any>)
| 59 | this.layout()!.addWidget(child); |
| 60 | } |
| 61 | insertBefore(child: QWidget<any>, beforeChild: QWidget<any>): void { |
| 62 | if (child! instanceof QDialog) { |
| 63 | this.appendChild(child); |
| 64 | } |
| 65 | } |
| 66 | removeChild(child: QWidget<any>): void { |
| 67 | if (!this.layout()) { |
| 68 | console.warn("parent has no layout to remove child from"); |
nothing calls this directly
no test coverage detected