| 861 | } |
| 862 | |
| 863 | FrequencyCorrectionDialog::FrequencyCorrectionDialog( |
| 864 | QWidget *parent, |
| 865 | SUFREQ centerFreq, |
| 866 | ColorConfig const &colors) : |
| 867 | QDialog(parent), |
| 868 | colors(colors), |
| 869 | ui(new Ui::FrequencyCorrectionDialog) |
| 870 | { |
| 871 | |
| 872 | ui->setupUi(this); |
| 873 | this->connectAll(); |
| 874 | |
| 875 | gettimeofday(&this->timeStamp, nullptr); |
| 876 | |
| 877 | this->timer.start(250); |
| 878 | this->updatePrediction(); |
| 879 | this->setFrequency(centerFreq); |
| 880 | this->findNewSatellites(); |
| 881 | this->refreshUiState(); |
| 882 | } |
| 883 | |
| 884 | void |
| 885 | FrequencyCorrectionDialog::setQth(xyz_t const &qth) |
nothing calls this directly
no test coverage detected