| 2208 | // ------------------------------------------------ |
| 2209 | |
| 2210 | bool 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 | |
| 2220 | void MainWindow::stackUpdate() { |
| 2221 | disconnect(ui->stackView->verticalScrollBar(), &QScrollBar::valueChanged, this, &MainWindow::stackScroll); |
nothing calls this directly
no outgoing calls
no test coverage detected