| 332 | } |
| 333 | |
| 334 | void MainWindow::setDebugDisasmImplict(bool state) { |
| 335 | ui->checkDisasmImplict->setChecked(state); |
| 336 | m_config->setValue(SETTING_DEBUGGER_IMPLICT, state); |
| 337 | disasm.implicit = state; |
| 338 | if (guiDebug) { |
| 339 | disasmUpdate(); |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | void MainWindow::setDebugDisasmUppercase(bool state) { |
| 344 | ui->checkDisasmUppercase->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected