MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / setNormalOs

Method setNormalOs

gui/qt/settings.cpp:1055–1068  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1053}
1054
1055void 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
1070void MainWindow::setUIBoundaries(bool state) {
1071 m_config->setValue(SETTING_WINDOW_SEPARATOR, state);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected