diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-07-19 22:42:48 +0200 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-07-20 13:13:11 +0000 |
commit | 5b3927869c9df7faf6aa2f22754f62952e67386f (patch) | |
tree | 01d31cf5739a371ced9904f1e0b8a589fa103b92 /src/plugins/python/pythonproject.cpp | |
parent | 19f9b6c1a0e3af10e248937eb7e30c87d17b31dc (diff) | |
download | qt-creator-5b3927869c9df7faf6aa2f22754f62952e67386f.tar.gz |
Drop Qt5: ProjectExplorer: Get rid of QOverload
Change-Id: Id8b28efa7b31a92a5e24485803322c586a23802d
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/plugins/python/pythonproject.cpp')
-rw-r--r-- | src/plugins/python/pythonproject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp index 7d0fc27f0f..40c9138e0c 100644 --- a/src/plugins/python/pythonproject.cpp +++ b/src/plugins/python/pythonproject.cpp @@ -497,7 +497,7 @@ Project::RestoreResult PythonProject::fromMap(const QVariantMap &map, QString *e PythonBuildSystem::PythonBuildSystem(Target *target) : BuildSystem(target) { - connect(target->project(), &Project::projectFileIsDirty, this, [this]() { triggerParsing(); }); + connect(target->project(), &Project::projectFileIsDirty, this, [this] { triggerParsing(); }); QTimer::singleShot(0, this, &PythonBuildSystem::triggerParsing); } |