diff options
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); } |