| 325 | } |
| 326 | |
| 327 | void |
| 328 | SamplerDialog::onBpsChanged(void) |
| 329 | { |
| 330 | unsigned int bps = static_cast<unsigned>(this->ui->bpsSpin->value()); |
| 331 | |
| 332 | this->decider.setBps(bps); |
| 333 | this->ui->histogram->setOrderHint(bps); |
| 334 | this->ui->symView->setBitsPerSymbol(bps); |
| 335 | |
| 336 | emit resample(); |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | SamplerDialog::onZoomChanged(void) |
nothing calls this directly
no test coverage detected