| 310 | } |
| 311 | |
| 312 | void MainWindow::setDebugDisasmDataCol(bool state) { |
| 313 | ui->checkDisasmDataCol->setChecked(state); |
| 314 | m_config->setValue(SETTING_DEBUGGER_DATA_COL, state); |
| 315 | disasm.bytes = state; |
| 316 | if (guiDebug) { |
| 317 | disasmUpdate(); |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | void MainWindow::setDebugDisasmAddrCol(bool state) { |
| 322 | ui->checkDisasmAddr->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected