| 103 | }; |
| 104 | |
| 105 | Path findProjectForForPath(const IndexedString& path) |
| 106 | { |
| 107 | const auto model = ICore::self()->projectController()->projectModel(); |
| 108 | const auto item = model->itemForPath(IndexedStringView::fromString(path)); |
| 109 | return item ? item->project()->path() : Path(); |
| 110 | } |
| 111 | uint addedItems(const AddedItems& items) |
| 112 | { |
| 113 | uint add = 0; |
no test coverage detected