| 101 | } |
| 102 | |
| 103 | void TestProject::addToFileSet(ProjectFileItem* file) |
| 104 | { |
| 105 | if (!m_fileSet.contains(file->indexedPath())) { |
| 106 | m_fileSet.insert(file->indexedPath()); |
| 107 | emit fileAddedToSet(file); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void TestProject::removeFromFileSet(ProjectFileItem* file) |
| 112 | { |
nothing calls this directly
no test coverage detected