Qt Support: Fix UI text

The end bracket does not seem to have a function in the UI.

Change-Id: I2c89c7692c208a83b8ed18f5132247481d73e7f0
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Leena Miettinen
2020-07-01 16:13:20 +02:00
parent ec05ab94fd
commit b330fecd39

View File

@@ -128,7 +128,7 @@ public:
const QString row = "<tr><td>%1:</td><td>%2</td></tr>";
return QString("<table>"
+ row.arg(tr("Qt Version"), m_version->qtVersionString())
+ row.arg(tr("Location of qmake)"), m_version->qmakeCommand().toUserOutput())
+ row.arg(tr("Location of qmake"), m_version->qmakeCommand().toUserOutput())
+ "</table>");
}