| 290 | } |
| 291 | |
| 292 | void setStatusBarStationText(QLabel* label, const QString& text) |
| 293 | { |
| 294 | if (!label) { |
| 295 | return; |
| 296 | } |
| 297 | |
| 298 | label->setText(text); |
| 299 | label->ensurePolished(); |
| 300 | label->setMinimumWidth(label->sizeHint().width() + 2); |
| 301 | } |
| 302 | |
| 303 | QString vfoFrequencyText(double mhz) |
| 304 | { |
no test coverage detected