| 341 | } |
| 342 | |
| 343 | void MainWindow::setDebugDisasmUppercase(bool state) { |
| 344 | ui->checkDisasmUppercase->setChecked(state); |
| 345 | m_config->setValue(SETTING_DEBUGGER_UPPERCASE, state); |
| 346 | disasm.uppercase = state; |
| 347 | if (guiDebug) { |
| 348 | disasmUpdate(); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | void MainWindow::setDebugDisasmSpace(bool state) { |
| 353 | ui->checkAddSpace->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected