| 651 | } |
| 652 | |
| 653 | bool ModListView::toggleSelectionState() |
| 654 | { |
| 655 | if (!selectionModel()->hasSelection()) { |
| 656 | return true; |
| 657 | } |
| 658 | return m_core->modList()->toggleState( |
| 659 | indexViewToModel(selectionModel()->selectedRows())); |
| 660 | } |
| 661 | |
| 662 | void ModListView::updateGroupByProxy() |
| 663 | { |
nothing calls this directly
no test coverage detected