| 21 | |
| 22 | namespace { |
| 23 | bool isChildItem(ProjectBaseItem* parent, ProjectBaseItem* child) |
| 24 | { |
| 25 | do { |
| 26 | if (child == parent) { |
| 27 | return true; |
| 28 | } |
| 29 | child = child->parent(); |
| 30 | } while(child); |
| 31 | return false; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | FileManagerListJob::FileManagerListJob(ProjectFolderItem* item) |
no test coverage detected