| 66 | } |
| 67 | |
| 68 | ProjectFile::ProjectFile(const ProjectFileItem* fileItem) |
| 69 | : path{fileItem->path()} |
| 70 | , projectPath{fileItem->project()->path()} |
| 71 | , indexedPath{fileItem->indexedPathView()} |
| 72 | , outsideOfProject{!projectPath.isParentOf(path)} |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | ProjectFileData::ProjectFileData(const ProjectFile& file) |
| 77 | : m_file(file) |
nothing calls this directly
no test coverage detected