diff options
| author | Joerg Bornemann <joerg.bornemann@qt.io> | 2022-04-19 09:28:36 +0200 |
|---|---|---|
| committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2022-04-25 19:39:49 +0200 |
| commit | 73284aa3cfdb4178230b83b2361f8056e2f54c44 (patch) | |
| tree | c0be1c3f2559c06fe1b4e88a12661d31f928d331 /tests/auto/qml/debugger/shared/debugutil.cpp | |
| parent | f7f6e140947582026d08a68421052e6ac7b997e4 (diff) | |
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 <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/qml/debugger/shared/debugutil.cpp')
| -rw-r--r-- | tests/auto/qml/debugger/shared/debugutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 <moc_debugutil_p.cpp> |
