| 214 | : path(path), displayNameOverride(displayNameOverride) {} |
| 215 | |
| 216 | static RecentFile fromProjectFile(const ProjectFile& projectFile) |
| 217 | { |
| 218 | return RecentFile(projectFile.path(), projectFile.displayNameOverride); |
| 219 | } |
| 220 | |
| 221 | ProjectFile toProjectFile() const |
| 222 | { |
nothing calls this directly
no test coverage detected