| 552 | } |
| 553 | |
| 554 | bool AbstractFileManagerPlugin::renameFolder(ProjectFolderItem* folder, const Path& newPath) |
| 555 | { |
| 556 | Q_D(AbstractFileManagerPlugin); |
| 557 | |
| 558 | qCDebug(FILEMANAGER) << "trying to rename a folder:" << folder->path() << newPath; |
| 559 | return d->rename(folder, newPath); |
| 560 | } |
| 561 | |
| 562 | bool AbstractFileManagerPlugin::renameFile(ProjectFileItem* file, const Path& newPath) |
| 563 | { |
no test coverage detected