NOISSUE Remove tr(...) where unnecessary.

This commit is contained in:
Loetkolben
2016-03-22 23:28:47 +01:00
parent 07608ebc4c
commit 0c06ab364c
7 changed files with 11 additions and 11 deletions

View File

@ -43,7 +43,7 @@ void JavaCommon::TestCheck::javaArgsWereBad(JavaCheckResult result)
QString text;
htmlError.replace('\n', "<br />");
text += tr("The specified java binary didn't work with the arguments you provided:<br />");
text += tr("<font color=\"red\">%1</font>").arg(htmlError);
text += QString("<font color=\"red\">%1</font>").arg(htmlError);
CustomMessageBox::selectable(m_parent, tr("Java test failure"), text, QMessageBox::Warning)
->show();
}