| 322 | } |
| 323 | |
| 324 | void QuickOpenWidget::applyFilter() |
| 325 | { |
| 326 | m_model->textChanged(m_filter); |
| 327 | |
| 328 | QModelIndex currentIndex = m_model->index(0, 0, QModelIndex()); |
| 329 | |
| 330 | ui.list->selectionModel()->setCurrentIndex(m_proxy->mapFromSource(currentIndex), QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows | QItemSelectionModel::Current); |
| 331 | |
| 332 | callRowSelected(); |
| 333 | } |
| 334 | |
| 335 | void QuickOpenWidget::callRowSelected() |
| 336 | { |
nothing calls this directly
no test coverage detected