| 1451 | } |
| 1452 | |
| 1453 | void MainWindow::closeEvent(QCloseEvent* event) |
| 1454 | { |
| 1455 | // Save the window state and geometry. |
| 1456 | APPLICATION->settings()->set("MainWindowState", saveState().toBase64()); |
| 1457 | APPLICATION->settings()->set("MainWindowGeometry", saveGeometry().toBase64()); |
| 1458 | instanceToolbarSetting->set(ui->instanceToolBar->getVisibilityState()); |
| 1459 | event->accept(); |
| 1460 | emit isClosing(); |
| 1461 | } |
| 1462 | |
| 1463 | void MainWindow::changeEvent(QEvent* event) |
| 1464 | { |
nothing calls this directly
no test coverage detected