| 353 | } |
| 354 | |
| 355 | void |
| 356 | FrequencyCorrectionDialog::repaintSatellitePlot(void) |
| 357 | { |
| 358 | QPixmap pixmap( |
| 359 | FREQUENCY_CORRECTION_DIALOG_OVERSAMPLING * |
| 360 | this->ui->satellitePlotLabel->width(), |
| 361 | FREQUENCY_CORRECTION_DIALOG_OVERSAMPLING * |
| 362 | this->ui->satellitePlotLabel->height()); |
| 363 | |
| 364 | this->paintAzimuthElevationMap(pixmap); |
| 365 | this->paintAzimuthElevationSatPath(pixmap); |
| 366 | |
| 367 | this->ui->satellitePlotLabel->setPixmap(pixmap); |
| 368 | } |
| 369 | |
| 370 | void |
| 371 | FrequencyCorrectionDialog::setColorConfig(ColorConfig const &colors) |
no test coverage detected