| 191 | } |
| 192 | |
| 193 | void |
| 194 | SamplerDialog::fitToSamples(void) |
| 195 | { |
| 196 | if (isfinite(this->minVal) && isfinite(this->maxVal)) { |
| 197 | this->decider.setMinimum(this->minVal); |
| 198 | this->decider.setMaximum(this->maxVal); |
| 199 | |
| 200 | this->ui->histogram->setDecider(&this->decider); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | void |
| 205 | SamplerDialog::feedSet(WaveSampleSet const &set) |
nothing calls this directly
no outgoing calls
no test coverage detected