dumpcpp: Fix creation of temporary header

dumpcpp created "invalid" headers. These headers contained one closing
brace too many because we closed the "class scope" as a namespace.

Pick-to: 6.8 6.9
Change-Id: I06b94a0b1437c4994f710aa6d8a5a640d8c4ea39
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Oliver Wolff 2024-10-09 09:48:53 +02:00 committed by Volker Hilsheimer
parent 652f58f250
commit 8643688eed
1 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,8 @@ static QString mocHeader(const QMetaObject *mo, const QStringList &name,
formatCppMethods(str, mo, QMetaMethod::Slot);
str << "};\n";
for (int n = name.size() - 1; n >= 0 ; --n)
// The final part of "name" is the class name. It shouldn't be closed as a namespace
for (int n = name.size() - 2; n >= 0; --n)
str << "} // namespace " << name.at(n) << '\n';
return result;