| 391 | } |
| 392 | |
| 393 | void MainWindow::onAutoLoadLastFileTriggered(const bool checked) |
| 394 | { |
| 395 | if (checked) |
| 396 | return; |
| 397 | if (!m_watcher->warnIfUnsavedChanges()) |
| 398 | return; |
| 399 | m_watcher->clearWatchList(); |
| 400 | m_watcher->restoreWatchModel(SConfig::getInstance().getWatchModel()); |
| 401 | updateStatusBar(); |
| 402 | } |
| 403 | |
| 404 | void MainWindow::onCollapseGroupsOnSaveTriggered(const bool checked) |
| 405 | { |
nothing calls this directly
no test coverage detected