Fix wrong include in debugutil.cpp

Commit 8398f6990b 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 <ulf.hermann@qt.io>
This commit is contained in:
Joerg Bornemann 2022-04-19 09:28:36 +02:00
parent f7f6e14094
commit 73284aa3cf
1 changed files with 1 additions and 1 deletions

View File

@ -260,4 +260,4 @@ QString debugJsServerPath(const QString &selfPath)
+ "/" + debugserver; + "/" + debugserver;
} }
#include "debugutil.moc" #include <moc_debugutil_p.cpp>