(newProps: WindowProps, oldProps: WindowProps)
| 31 | */ |
| 32 | export class RNWindow extends QMainWindow implements RNWidget { |
| 33 | setProps(newProps: WindowProps, oldProps: WindowProps): void { |
| 34 | setWindowProps(this, newProps, oldProps); |
| 35 | } |
| 36 | removeChild(child: QWidget<any>) { |
| 37 | const removedChild = this.takeCentralWidget(); |
| 38 | if (removedChild) { |
no test coverage detected