| 429 | } |
| 430 | |
| 431 | void MainWindow::setDebugIgnoreBreakpoints(bool state) { |
| 432 | ui->buttonToggleBreakpoints->setChecked(state); |
| 433 | m_config->setValue(SETTING_DEBUGGER_BREAK_IGNORE, state); |
| 434 | debug_flag(DBG_IGNORE, state); |
| 435 | } |
| 436 | |
| 437 | void MainWindow::setDebugResetTrigger(bool state) { |
| 438 | ui->checkDebugResetTrigger->setChecked(state); |
nothing calls this directly
no test coverage detected