| 546 | } |
| 547 | |
| 548 | void WinNativeWidget::setGeometry(const int x, const int y, const int width, const int height) |
| 549 | { |
| 550 | if (_hWnd != NULL){ |
| 551 | MoveWindow(_hWnd, x, y, width, height, 1); |
| 552 | } |
| 553 | } |
| 554 | |
| 555 | void WinNativeWidget::Show(bool bShow) |
| 556 | { |
no outgoing calls
no test coverage detected