| 855 | } |
| 856 | |
| 857 | void ProjectExplorer::expandSelected() { |
| 858 | const auto& items = m_treeView->selectionModel()->selectedIndexes(); |
| 859 | for (const auto& index : items) |
| 860 | m_treeView->setExpanded(index, true); |
| 861 | } |
| 862 | |
| 863 | void ProjectExplorer::collapseSelected() { |
| 864 | const auto& items = m_treeView->selectionModel()->selectedIndexes(); |
nothing calls this directly
no test coverage detected