| 821 | } |
| 822 | |
| 823 | void |
| 824 | FrequencyCorrectionDialog::connectAll(void) |
| 825 | { |
| 826 | connect( |
| 827 | this->ui->correctionTypeCombo, |
| 828 | SIGNAL(activated(int)), |
| 829 | this, |
| 830 | SLOT(onSwitchCorrectionType(void))); |
| 831 | |
| 832 | connect( |
| 833 | this->ui->satCombo, |
| 834 | SIGNAL(activated(int)), |
| 835 | this, |
| 836 | SLOT(onSwitchSatellite(void))); |
| 837 | |
| 838 | connect( |
| 839 | this->ui->satRadio, |
| 840 | SIGNAL(toggled(bool)), |
| 841 | this, |
| 842 | SLOT(onToggleOrbitType(void))); |
| 843 | |
| 844 | connect( |
| 845 | this->ui->tleRadio, |
| 846 | SIGNAL(toggled(bool)), |
| 847 | this, |
| 848 | SLOT(onToggleOrbitType(void))); |
| 849 | |
| 850 | connect( |
| 851 | this->ui->tleEdit, |
| 852 | SIGNAL(textChanged(void)), |
| 853 | this, |
| 854 | SLOT(onTLEEdit(void))); |
| 855 | |
| 856 | connect( |
| 857 | &this->timer, |
| 858 | SIGNAL(timeout(void)), |
| 859 | this, |
| 860 | SLOT(onTick(void))); |
| 861 | } |
| 862 | |
| 863 | FrequencyCorrectionDialog::FrequencyCorrectionDialog( |
| 864 | QWidget *parent, |
no outgoing calls
no test coverage detected