| 685 | } |
| 686 | |
| 687 | FrequencyAllocationTable * |
| 688 | MainSpectrum::getFAT(QString const &name) const |
| 689 | { |
| 690 | std::string asStdString = name.toStdString(); |
| 691 | |
| 692 | for (auto p : this->FATs) |
| 693 | if (p->getName() == asStdString) |
| 694 | return p; |
| 695 | |
| 696 | return nullptr; |
| 697 | } |
| 698 | |
| 699 | void |
| 700 | MainSpectrum::adjustSizes(void) |
no test coverage detected