aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/buildgraph/artifact.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/buildgraph/artifact.cpp')
-rw-r--r--src/lib/buildgraph/artifact.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/buildgraph/artifact.cpp b/src/lib/buildgraph/artifact.cpp
index 86e996126..f522ec356 100644
--- a/src/lib/buildgraph/artifact.cpp
+++ b/src/lib/buildgraph/artifact.cpp
@@ -109,7 +109,7 @@ void Artifact::store(PersistentPool &pool) const
void Artifact::disconnectChildren()
{
if (qbsLogLevel(LoggerTrace))
- qbsTrace("[BG] disconnectChildren: '%s'", qPrintable(qbs::Internal::fileName(this)));
+ qbsTrace("[BG] disconnectChildren: '%s'", qPrintable(BuildGraph::fileName(this)));
foreach (Artifact * const child, children)
child->parents.remove(this);
children.clear();
@@ -118,7 +118,7 @@ void Artifact::disconnectChildren()
void Artifact::disconnectParents()
{
if (qbsLogLevel(LoggerTrace))
- qbsTrace("[BG] disconnectParents: '%s'", qPrintable(qbs::Internal::fileName(this)));
+ qbsTrace("[BG] disconnectParents: '%s'", qPrintable(BuildGraph::fileName(this)));
foreach (Artifact * const parent, parents)
parent->children.remove(this);
parents.clear();