| 447 | } // FileSystemItem::addChild |
| 448 | |
| 449 | void |
| 450 | FileSystemItem::clearChildren() |
| 451 | { |
| 452 | QMutexLocker l(&_imp->childrenMutex); |
| 453 | |
| 454 | _imp->children.clear(); |
| 455 | } |
| 456 | |
| 457 | // This is a recursive method which tries to match a path to a specifiq |
| 458 | // FileSystemItem item which has the path; |
no test coverage detected