aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/productbuilddata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/productbuilddata.cpp')
-rw-r--r--src/lib/corelib/buildgraph/productbuilddata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/corelib/buildgraph/productbuilddata.cpp b/src/lib/corelib/buildgraph/productbuilddata.cpp
index abea2c861..39fdda32b 100644
--- a/src/lib/corelib/buildgraph/productbuilddata.cpp
+++ b/src/lib/corelib/buildgraph/productbuilddata.cpp
@@ -121,7 +121,7 @@ void ProductBuildData::store(PersistentPool &pool) const
void addArtifactToSet(Artifact *artifact, ProductBuildData::ArtifactSetByFileTag &container)
{
- foreach (const FileTag &tag, artifact->fileTags)
+ foreach (const FileTag &tag, artifact->fileTags())
container[tag] += artifact;
}
@@ -138,7 +138,7 @@ void removeArtifactFromSetByFileTag(Artifact *artifact, const FileTag &fileTag,
void removeArtifactFromSet(Artifact *artifact, ProductBuildData::ArtifactSetByFileTag &container)
{
- foreach (const FileTag &t, artifact->fileTags)
+ foreach (const FileTag &t, artifact->fileTags())
removeArtifactFromSetByFileTag(artifact, t, container);
}