| 287 | } |
| 288 | |
| 289 | void MainWindow::setDebugSoftCommands(bool state) { |
| 290 | ui->checkDisableSoftCommands->blockSignals(true); |
| 291 | ui->checkDisableSoftCommands->setChecked(state); |
| 292 | ui->checkDisableSoftCommands->blockSignals(false); |
| 293 | m_config->setValue(SETTING_DEBUGGER_ENABLE_SOFT, state); |
| 294 | debug_flag(DBG_SOFT_COMMANDS, state); |
| 295 | } |
| 296 | |
| 297 | void MainWindow::setDebugDisasmBoldSymbols(bool state) { |
| 298 | ui->checkDisasmBoldSymbols->setChecked(state); |
nothing calls this directly
no test coverage detected