| 59 | } |
| 60 | |
| 61 | void FileManagerListJob::addSubDir( ProjectFolderItem* item ) |
| 62 | { |
| 63 | Q_ASSERT(!m_listQueue.contains(item)); |
| 64 | Q_ASSERT(!m_item || m_item == item || m_item->path().isDirectParentOf(item->path())); |
| 65 | |
| 66 | m_listQueue.enqueue(item); |
| 67 | } |
| 68 | |
| 69 | void FileManagerListJob::handleRemovedItem(ProjectBaseItem* item) |
| 70 | { |
no test coverage detected