| 384 | } |
| 385 | |
| 386 | void AbstractFileManagerPluginPrivate::stopWatcher(ProjectFolderItem* folder) |
| 387 | { |
| 388 | if ( !folder->path().isLocalFile() ) { |
| 389 | return; |
| 390 | } |
| 391 | Q_ASSERT(m_watchers.contains(folder->project())); |
| 392 | const QString path = folder->path().toLocalFile(); |
| 393 | m_watchers[folder->project()]->stopDirScan(path); |
| 394 | m_stoppedFolders.append(path); |
| 395 | } |
| 396 | |
| 397 | void AbstractFileManagerPluginPrivate::continueWatcher(ProjectFolderItem* folder) |
| 398 | { |
no test coverage detected