| 1141 | } |
| 1142 | |
| 1143 | void |
| 1144 | PanoramicDialog::onGainChanged(QString name, float val) |
| 1145 | { |
| 1146 | Suscan::Source::Device dev; |
| 1147 | |
| 1148 | if (this->getSelectedDevice(dev)) |
| 1149 | this->dialogConfig->setGain(dev.getDriver(), name.toStdString(), val); |
| 1150 | |
| 1151 | emit gainChanged(name, val); |
| 1152 | } |
| 1153 | |
| 1154 | void |
| 1155 | PanoramicDialog::onSampleRateSpinChanged(void) |
nothing calls this directly
no test coverage detected