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

Method adlState

gui/qt/debugger.cpp:2210–2218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2208// ------------------------------------------------
2209
2210bool MainWindow::adlState(int state) {
2211 bool adl = ui->checkADL->isChecked();
2212 if (state == Qt::Checked) {
2213 adl = true;
2214 } else if (state == Qt::Unchecked) {
2215 adl = false;
2216 }
2217 return adl;
2218}
2219
2220void MainWindow::stackUpdate() {
2221 disconnect(ui->stackView->verticalScrollBar(), &QScrollBar::valueChanged, this, &MainWindow::stackScroll);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected