From 0c06ab364c58a09655c62272605eec9ce611f929 Mon Sep 17 00:00:00 2001 From: Loetkolben Date: Tue, 22 Mar 2016 23:28:47 +0100 Subject: NOISSUE Remove tr(...) where unnecessary. --- application/JavaCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application/JavaCommon.cpp') diff --git a/application/JavaCommon.cpp b/application/JavaCommon.cpp index 403883e7..a8561f6d 100644 --- a/application/JavaCommon.cpp +++ b/application/JavaCommon.cpp @@ -43,7 +43,7 @@ void JavaCommon::TestCheck::javaArgsWereBad(JavaCheckResult result) QString text; htmlError.replace('\n', "
"); text += tr("The specified java binary didn't work with the arguments you provided:
"); - text += tr("%1").arg(htmlError); + text += QString("%1").arg(htmlError); CustomMessageBox::selectable(m_parent, tr("Java test failure"), text, QMessageBox::Warning) ->show(); } -- cgit v1.2.3