| 1053 | } |
| 1054 | |
| 1055 | void MainWindow::setNormalOs(bool state) { |
| 1056 | ui->checkNormOs->setChecked(state); |
| 1057 | m_config->setValue(SETTING_DEBUGGER_NORM_OS, state); |
| 1058 | m_normalOs = state; |
| 1059 | if (guiDebug) { |
| 1060 | ui->opView->setEnabled(state); |
| 1061 | ui->vatView->setEnabled(state); |
| 1062 | ui->opStack->setEnabled(state); |
| 1063 | ui->fpStack->setEnabled(state); |
| 1064 | if (state) { |
| 1065 | osUpdate(); |
| 1066 | } |
| 1067 | } |
| 1068 | } |
| 1069 | |
| 1070 | void MainWindow::setUIBoundaries(bool state) { |
| 1071 | m_config->setValue(SETTING_WINDOW_SEPARATOR, state); |
nothing calls this directly
no outgoing calls
no test coverage detected