| 403 | } |
| 404 | |
| 405 | void MainWindow::closeEvent(QCloseEvent *e) { |
| 406 | |
| 407 | if(_exitFlag == false && !this->isHidden()) { |
| 408 | e->ignore(); |
| 409 | this->hide(); |
| 410 | } else |
| 411 | e->accept(); |
| 412 | } |
| 413 | |
| 414 | void MainWindow::exit() { |
| 415 | int ret = QMessageBox::question(this, tr("确认"), tr("是否要退出系统?")); |
nothing calls this directly
no outgoing calls
no test coverage detected