summaryrefslogtreecommitdiff
path: root/src/plugins/python/pythonproject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/python/pythonproject.cpp')
-rw-r--r--src/plugins/python/pythonproject.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp
index 136ada7bb8..c38394a0be 100644
--- a/src/plugins/python/pythonproject.cpp
+++ b/src/plugins/python/pythonproject.cpp
@@ -289,16 +289,6 @@ bool PythonProject::removeFiles(const QStringList &filePaths)
return saveRawFileList(newList);
}
-bool PythonProject::setFiles(const QStringList &filePaths)
-{
- QStringList newList;
- const QDir baseDir(projectDirectory().toString());
- for (const QString &filePath : filePaths)
- newList.append(baseDir.relativeFilePath(filePath));
-
- return saveRawFileList(newList);
-}
-
bool PythonProject::renameFile(const QString &filePath, const QString &newFilePath)
{
QStringList newList = m_rawFileList;