ProjectExplorer: Fix loop in toHtml call

Change-Id: Ic32209dbb13897575cbc1845c4afca1b01da1c64
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Tobias Hunger
2018-04-19 11:28:46 +02:00
committed by Thomas Hartmann
parent 1c2e0f387f
commit 26e4db6514

View File

@@ -538,7 +538,7 @@ QString Kit::toHtml(const QList<Task> &additional) const
str << "<h3>" << displayName() << "</h3>";
if (!isValid() || hasWarning() || !additional.isEmpty())
str << "<p>" << toHtml(additional + validate()) << "</p>";
str << "<p>" << ProjectExplorer::toHtml(additional + validate()) << "</p>";
str << "<table>";
QList<KitInformation *> infoList = KitManager::kitInformation();