aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2022-01-12 10:56:38 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2022-01-13 11:28:22 +0000
commit187446b5663a8b238eb2b6e04513368000ba2e53 (patch)
tree281397c5ab6f95ed144e8b1654190b585c613424
parent137e1f968935a583a18c6a9c567ad043aff91360 (diff)
Remove bogus reset of build graph's "dirty" flag
It's unclear why that code was ever there. Fixes: QBS-1686 Change-Id: I893216c9b27afeec8913f59e55f475d58964eb92 Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
-rw-r--r--src/lib/corelib/buildgraph/projectbuilddata.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/projectbuilddata.cpp b/src/lib/corelib/buildgraph/projectbuilddata.cpp
index 0ac6b1537..e0e70e650 100644
--- a/src/lib/corelib/buildgraph/projectbuilddata.cpp
+++ b/src/lib/corelib/buildgraph/projectbuilddata.cpp
@@ -240,7 +240,6 @@ void ProjectBuildData::removeArtifact(Artifact *artifact,
artifact->transformer->outputs.remove(artifact);
if (removeFromProduct)
artifact->product->buildData->removeArtifact(artifact);
- m_isDirty = false;
}
void ProjectBuildData::setDirty()