| 333 | } |
| 334 | |
| 335 | void QuickOpenWidget::callRowSelected() |
| 336 | { |
| 337 | const QModelIndex currentIndex = ui.list->currentIndex(); |
| 338 | if (currentIndex.isValid()) { |
| 339 | m_model->rowSelected(m_proxy->mapToSource(currentIndex)); |
| 340 | } else { |
| 341 | qCDebug(PLUGIN_QUICKOPEN) << "current index is not valid"; |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | void QuickOpenWidget::accept() |
| 346 | { |
nothing calls this directly
no test coverage detected