mirror of https://github.com/qt/qtactiveqt.git
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:
parent
652f58f250
commit
8643688eed
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue