aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonbuildsystem.h
diff options
context:
space:
mode:
authorChristian Kandeler <[email protected]>2024-09-11 17:04:01 +0200
committerChristian Kandeler <[email protected]>2024-09-16 12:08:21 +0000
commit05430afdcf1e10f4cc9b43407f996993a6175854 (patch)
treebec0a81c89ba9e38c28a3760ea24e60a7286cf5d /src/plugins/python/pythonbuildsystem.h
parentff44f589f5299d358274332d6d791a98a934dacc (diff)
ProjectExplorer: Let build systems do renamings in bulk
Like for the add and remove operations. Change-Id: I734396b1b0f5a4ffb9cf193a0e32c8f7f60259ae Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/python/pythonbuildsystem.h')
-rw-r--r--src/plugins/python/pythonbuildsystem.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/python/pythonbuildsystem.h b/src/plugins/python/pythonbuildsystem.h
index 59de3401147..09616015662 100644
--- a/src/plugins/python/pythonbuildsystem.h
+++ b/src/plugins/python/pythonbuildsystem.h
@@ -25,9 +25,10 @@ public:
const Utils::FilePaths &filePaths,
Utils::FilePaths *) override;
bool deleteFiles(ProjectExplorer::Node *, const Utils::FilePaths &) override;
- bool renameFile(ProjectExplorer::Node *,
- const Utils::FilePath &oldFilePath,
- const Utils::FilePath &newFilePath) override;
+ bool renameFiles(
+ ProjectExplorer::Node *,
+ const Utils::FilePairs &filesToRename,
+ Utils::FilePaths *notRenamed) override;
QString name() const override { return QLatin1String("python"); }
void parse();