diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2021-09-09 11:28:28 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2021-09-09 14:41:56 +0000 |
commit | 939cc5af218b041daa1519f26b6ada18572a7cf5 (patch) | |
tree | 73ff13958cc1c4e446201ac37f6886dc308278b9 /src/plugins/python/pythonproject.cpp | |
parent | ecfe6b7fc1f92eb0e076406fb766fde8c8ec29b0 (diff) | |
download | qt-creator-939cc5af218b041daa1519f26b6ada18572a7cf5.tar.gz |
ProjectExplorer: Give build systems a name
... and make it accessible through a variable.
Fixes: QTCREATORBUG-26147
Change-Id: I0601c09a74360b91fe8421876207a8f4ae9d75b6
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/python/pythonproject.cpp')
-rw-r--r-- | src/plugins/python/pythonproject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp index 890bcd10fb..c373b08ac1 100644 --- a/src/plugins/python/pythonproject.cpp +++ b/src/plugins/python/pythonproject.cpp @@ -69,6 +69,7 @@ public: bool renameFile(Node *, const Utils::FilePath &oldFilePath, const Utils::FilePath &newFilePath) override; + QString name() const override { return QLatin1String("python"); } bool saveRawFileList(const QStringList &rawFileList); bool saveRawList(const QStringList &rawList, const QString &fileName); |