| 350 | } |
| 351 | |
| 352 | void MainWindow::setDebugDisasmSpace(bool state) { |
| 353 | ui->checkAddSpace->setChecked(state); |
| 354 | m_config->setValue(SETTING_DEBUGGER_DISASM_SPACE, state); |
| 355 | disasm.comma = state ? ", " : ","; |
| 356 | if (guiDebug) { |
| 357 | disasmUpdate(); |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | void MainWindow::setDebugDisasmTab(bool state) { |
| 362 | ui->checkOperandTab->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected