aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/quicklayouts/qquicklayout.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/quicklayouts/qquicklayout.cpp b/src/quicklayouts/qquicklayout.cpp
index 8510f92a6f..5a6b30ff38 100644
--- a/src/quicklayouts/qquicklayout.cpp
+++ b/src/quicklayouts/qquicklayout.cpp
@@ -845,7 +845,8 @@ void QQuickLayout::invalidate(QQuickItem * /*childItem*/)
qCDebug(lcQuickLayouts) << "QQuickLayout::invalidate(), polish()";
polish();
} else {
- qmlWarning(this) << "Qt Quick Layouts: Polish loop detected. Aborting after two iterations.";
+ qmlWarning(this).nospace() << "Layout polish loop detected for " << this
+ << ". Aborting after two iterations.";
}
}
}