| 4 | namespace advss { |
| 5 | |
| 6 | WindowSelectionWidget::WindowSelectionWidget(QWidget *parent) |
| 7 | : FilterComboBox(parent) |
| 8 | { |
| 9 | setEditable(true); |
| 10 | SetAllowUnmatchedSelection(true); |
| 11 | setMaxVisibleItems(20); |
| 12 | PopulateWindowSelection(this); |
| 13 | } |
| 14 | |
| 15 | void WindowSelectionWidget::showEvent(QShowEvent *event) |
| 16 | { |
nothing calls this directly
no test coverage detected