| 427 | } |
| 428 | |
| 429 | void MainWindow::trayShowWindow() { |
| 430 | if(this->isHidden()) |
| 431 | this->show(); |
| 432 | if(this->isMinimized()) { |
| 433 | this->showNormal(); |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | void MainWindow::trayHideWindow() { |
| 438 | if(!this->isHidden()) |
nothing calls this directly
no outgoing calls
no test coverage detected