| 387 | } |
| 388 | |
| 389 | void GrepOutputView::selectNextItem() |
| 390 | { |
| 391 | if (!model()) { |
| 392 | return; |
| 393 | } |
| 394 | |
| 395 | QModelIndex next_idx = model()->nextItemIndex(resultsTreeView->currentIndex()); |
| 396 | if (next_idx.isValid()) { |
| 397 | resultsTreeView->setCurrentIndex(next_idx); |
| 398 | model()->activate(next_idx); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | |
| 403 | void GrepOutputView::collapseAllItems() |
nothing calls this directly
no test coverage detected