| 435 | } |
| 436 | |
| 437 | void MainWindow::setDebugResetTrigger(bool state) { |
| 438 | ui->checkDebugResetTrigger->setChecked(state); |
| 439 | m_config->setValue(SETTING_DEBUGGER_RESET_OPENS, state); |
| 440 | debug_flag(DBG_OPEN_ON_RESET, state); |
| 441 | } |
| 442 | |
| 443 | void MainWindow::setAutoSave(bool state) { |
| 444 | ui->checkSaveRestore->setChecked(state); |
nothing calls this directly
no test coverage detected