| 13 | } |
| 14 | |
| 15 | void WindowSelectionWidget::showEvent(QShowEvent *event) |
| 16 | { |
| 17 | FilterComboBox::showEvent(event); |
| 18 | const QSignalBlocker b(this); |
| 19 | const auto text = currentText(); |
| 20 | clear(); |
| 21 | PopulateWindowSelection(this); |
| 22 | setCurrentText(text); |
| 23 | } |
| 24 | |
| 25 | } // namespace advss |
nothing calls this directly
no test coverage detected