aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/depscanner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/depscanner.cpp')
-rw-r--r--src/lib/corelib/buildgraph/depscanner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/depscanner.cpp b/src/lib/corelib/buildgraph/depscanner.cpp
index 0deaae37a..5aa3c8676 100644
--- a/src/lib/corelib/buildgraph/depscanner.cpp
+++ b/src/lib/corelib/buildgraph/depscanner.cpp
@@ -178,7 +178,7 @@ QStringList UserDependencyScanner::evaluate(Artifact *artifact, const ScriptFunc
QScriptValue artifactConfig = m_engine->newObject();
ModuleProperties::init(artifactConfig, artifact);
artifactConfig.setProperty(QLatin1String("fileName"), artifact->filePath(), 0);
- const QStringList fileTags = artifact->fileTags.toStringList();
+ const QStringList fileTags = artifact->fileTags().toStringList();
artifactConfig.setProperty(QLatin1String("fileTags"), m_engine->toScriptValue(fileTags));
if (!m_scanner->module->name.isEmpty())
artifactConfig.setProperty(QLatin1String("moduleName"), m_scanner->module->name);