| 658 | } |
| 659 | |
| 660 | void UsesWidget::setAllExpanded(bool expanded) |
| 661 | { |
| 662 | const auto items = this->items(); |
| 663 | for (QWidget* w : items) { |
| 664 | if (auto* useWidget = qobject_cast<TopContextUsesWidget*>(w)) { |
| 665 | useWidget->setExpanded(expanded); |
| 666 | } |
| 667 | } |
| 668 | } |
| 669 | |
| 670 | void UsesWidget::headerLinkActivated(const QString& linkName) |
| 671 | { |
nothing calls this directly
no test coverage detected