| 675 | } |
| 676 | |
| 677 | void Project::removeFromFileSet( ProjectFileItem* file ) |
| 678 | { |
| 679 | Q_D(Project); |
| 680 | |
| 681 | QSet<IndexedString>::iterator it = d->fileSet.find(file->indexedPath()); |
| 682 | if (it == d->fileSet.end()) { |
| 683 | return; |
| 684 | } |
| 685 | |
| 686 | d->fileSet.erase( it ); |
| 687 | emit fileRemovedFromSet( file ); |
| 688 | } |
| 689 | |
| 690 | QSet<IndexedString> Project::fileSet() const |
| 691 | { |
no test coverage detected