| 829 | } |
| 830 | |
| 831 | void |
| 832 | FFTWidget::setRangeLock(bool lock) |
| 833 | { |
| 834 | if (lock) { |
| 835 | this->setWfRangeMin(this->getPandRangeMin()); |
| 836 | this->setWfRangeMax(this->getPandRangeMax()); |
| 837 | } |
| 838 | |
| 839 | this->ui->lockButton->setChecked(lock); |
| 840 | this->panelConfig->rangeLock = lock; |
| 841 | } |
| 842 | |
| 843 | bool |
| 844 | FFTWidget::setUnitName(QString name) |
no test coverage detected