/////////// Slots //////////////////
| 845 | |
| 846 | //////////////// Slots ////////////////// |
| 847 | void |
| 848 | ProfileConfigTab::onLoadProfileClicked(void) |
| 849 | { |
| 850 | QVariant data = this->ui->profileCombo->itemData(this->ui->profileCombo->currentIndex()); |
| 851 | |
| 852 | if (this->shouldDisregardTweaks()) { |
| 853 | this->configChanged(true); |
| 854 | this->profile = data.value<Suscan::Source::Config>(); |
| 855 | } |
| 856 | |
| 857 | this->refreshUi(); |
| 858 | } |
| 859 | |
| 860 | void |
| 861 | ProfileConfigTab::onToggleSourceType(bool) |
nothing calls this directly
no test coverage detected