| 245 | } |
| 246 | |
| 247 | void os::setForegroundWindow(QWidget *window) |
| 248 | { |
| 249 | #ifdef Q_OS_WIN |
| 250 | ShowWindow((HWND)window->winId(), SW_RESTORE); |
| 251 | SetForegroundWindow((HWND)window->winId()); |
| 252 | #else |
| 253 | Q_UNUSED(window) |
| 254 | #endif |
| 255 | } |
| 256 | |
| 257 | void os::setStartup(bool startup, bool hide) |
| 258 | { |
nothing calls this directly
no outgoing calls
no test coverage detected