| 488 | } |
| 489 | |
| 490 | QString Project::relativeToProject(const QString& fileName) |
| 491 | { |
| 492 | QFileInfo fi(fileName); |
| 493 | auto abs = fi.absoluteFilePath(); |
| 494 | return hasProjectFile() ? rootDir().relativeFilePath(abs) : abs; |
| 495 | } |
| 496 | |
| 497 | void Project::openTabsChanged(const QStringList& files, int currentTab) |
| 498 | { |
nothing calls this directly
no outgoing calls
no test coverage detected