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

Method stackScroll

gui/qt/debugger.cpp:1755–1763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1753}
1754
1755void MainWindow::stackScroll(int value) {
1756 QScrollBar *v = ui->stackView->verticalScrollBar();
1757 if (value >= v->maximum()) {
1758 v->blockSignals(true);
1759 stackLine();
1760 v->setValue(ui->stackView->verticalScrollBar()->maximum() - 1);
1761 v->blockSignals(false);
1762 }
1763}
1764
1765void MainWindow::equatesClear() {
1766 m_equateFiles.clear();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected