forked from qt-creator/qt-creator
ProjectExplorer: Fix loop in toHtml call
Change-Id: Ic32209dbb13897575cbc1845c4afca1b01da1c64 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Thomas Hartmann
parent
1c2e0f387f
commit
26e4db6514
@@ -538,7 +538,7 @@ QString Kit::toHtml(const QList<Task> &additional) const
|
|||||||
str << "<h3>" << displayName() << "</h3>";
|
str << "<h3>" << displayName() << "</h3>";
|
||||||
|
|
||||||
if (!isValid() || hasWarning() || !additional.isEmpty())
|
if (!isValid() || hasWarning() || !additional.isEmpty())
|
||||||
str << "<p>" << toHtml(additional + validate()) << "</p>";
|
str << "<p>" << ProjectExplorer::toHtml(additional + validate()) << "</p>";
|
||||||
|
|
||||||
str << "<table>";
|
str << "<table>";
|
||||||
QList<KitInformation *> infoList = KitManager::kitInformation();
|
QList<KitInformation *> infoList = KitManager::kitInformation();
|
||||||
|
Reference in New Issue
Block a user