| 53 | } |
| 54 | |
| 55 | QString iconNameForPath(IndexedStringView indexedPath) |
| 56 | { |
| 57 | if (indexedPath.isEmpty()) { |
| 58 | return QStringLiteral("tab-duplicate"); |
| 59 | } |
| 60 | const auto* const item = ICore::self()->projectController()->projectModel()->itemForPath(indexedPath); |
| 61 | if (item) { |
| 62 | return item->iconName(); |
| 63 | } |
| 64 | return QStringLiteral("unknown"); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | ProjectFile::ProjectFile(const ProjectFileItem* fileItem) |
no test coverage detected