| 560 | } |
| 561 | |
| 562 | bool AbstractFileManagerPlugin::renameFile(ProjectFileItem* file, const Path& newPath) |
| 563 | { |
| 564 | Q_D(AbstractFileManagerPlugin); |
| 565 | |
| 566 | qCDebug(FILEMANAGER) << "trying to rename a file:" << file->path() << newPath; |
| 567 | return d->rename(file, newPath); |
| 568 | } |
| 569 | |
| 570 | bool AbstractFileManagerPlugin::removeFilesAndFolders(const QList<ProjectBaseItem*> &items) |
| 571 | { |
no test coverage detected