From 73284aa3cfdb4178230b83b2361f8056e2f54c44 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Tue, 19 Apr 2022 09:28:36 +0200 Subject: Fix wrong include in debugutil.cpp Commit 8398f6990b51c120cdf724051c7f25fbbd290a9a added #include "debugutil.moc" but debugutil.cpp doesn't contain anything that would produce such a file. This leads to a flood of AutoMoc warnings when building the QML debugger test. Presumably, it was meant to include moc_debugutil_p.cpp, so let's do that. Change-Id: I86dfe935e7a01388f6737124d9383ad53a772897 Reviewed-by: Ulf Hermann --- tests/auto/qml/debugger/shared/debugutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto/qml/debugger/shared/debugutil.cpp') diff --git a/tests/auto/qml/debugger/shared/debugutil.cpp b/tests/auto/qml/debugger/shared/debugutil.cpp index 4e901c7027..20b0ed4747 100644 --- a/tests/auto/qml/debugger/shared/debugutil.cpp +++ b/tests/auto/qml/debugger/shared/debugutil.cpp @@ -260,4 +260,4 @@ QString debugJsServerPath(const QString &selfPath) + "/" + debugserver; } -#include "debugutil.moc" +#include -- cgit v1.2.3