| 564 | } |
| 565 | |
| 566 | bool Project::inProject( const IndexedString& path ) const |
| 567 | { |
| 568 | Q_D(const Project); |
| 569 | |
| 570 | if (d->fileSet.contains( path )) { |
| 571 | return true; |
| 572 | } |
| 573 | return !d->itemsForPath( path ).isEmpty(); |
| 574 | } |
| 575 | |
| 576 | QList< ProjectBaseItem* > Project::itemsForPath(const IndexedString& path) const |
| 577 | { |
no test coverage detected