| 505 | } |
| 506 | |
| 507 | bool AbstractFileManagerPlugin::reload( ProjectFolderItem* item ) |
| 508 | { |
| 509 | Q_D(AbstractFileManagerPlugin); |
| 510 | |
| 511 | qCDebug(FILEMANAGER) << "reloading item" << item->path(); |
| 512 | auto job = d->eventuallyReadFolder( item->folder() ); |
| 513 | job->start(); |
| 514 | return true; |
| 515 | } |
| 516 | |
| 517 | ProjectFolderItem* AbstractFileManagerPlugin::addFolder( const Path& folder, |
| 518 | ProjectFolderItem * parent ) |
nothing calls this directly
no test coverage detected