File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ bool isRenderable(QQuickItem* item);
2121void lintObjectTree (QObject* object) {
2222 if (!logLint ().isWarningEnabled ()) return ;
2323
24- qCDebug (logLint) << " Walking children of object" << object;
25-
2624 for (auto * child: object->children ()) {
2725 if (child->isQuickItemType ()) {
2826 auto * item = static_cast <QQuickItem*>(child); // NOLINT;
@@ -36,10 +34,8 @@ void lintObjectTree(QObject* object) {
3634void lintItemTree (QQuickItem* item) {
3735 if (!logLint ().isWarningEnabled ()) return ;
3836
39- qCDebug (logLint) << " Running lints for item" << item;
4037 lintZeroSized (item);
4138
42- qCDebug (logLint) << " Walking visual children of item" << item;
4339 for (auto * child: item->childItems ()) {
4440 lintItemTree (child);
4541 }
You can’t perform that action at this time.
0 commit comments