| 5531 | } |
| 5532 | |
| 5533 | void MainWindow::updateBandStackIndicator() |
| 5534 | { |
| 5535 | if (!m_bandStackIndicator || !m_panStack) |
| 5536 | return; |
| 5537 | |
| 5538 | const bool visible = m_panStack->bandStackPanel()->isVisible(); |
| 5539 | m_bandStackIndicator->setPixmap(buildBandStackIndicatorPixmap(visible)); |
| 5540 | m_bandStackIndicator->setToolTip(visible ? "Close band stack panel" |
| 5541 | : "Open band stack panel"); |
| 5542 | } |
| 5543 | |
| 5544 | bool MainWindow::activateMemorySpot(int memoryIndex, const QString& preferredPanId) |
| 5545 | { |
nothing calls this directly
no test coverage detected