From e0a05d476b73d2baa31c8fde36f332a05941edf7 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 14 Dec 2015 09:44:03 +0100 Subject: [PATCH] Make string translatable Change-Id: I5a0d48e0c01fea0e3da4174083e03920a8f39479 Reviewed-by: Niels Weber --- plugins/autotest/testoutputreader.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/autotest/testoutputreader.cpp b/plugins/autotest/testoutputreader.cpp index facf7353b62..5dacfeee618 100644 --- a/plugins/autotest/testoutputreader.cpp +++ b/plugins/autotest/testoutputreader.cpp @@ -255,8 +255,7 @@ void TestOutputReader::processOutput() description = tr("Qt version: %1").arg(text.toString()); break; case QtBuild: - // FIXME due to string freeze this is not a tr() - description = QString::fromLatin1("Qt build: %1").arg(text.toString()); + description = tr("Qt build: %1").arg(text.toString()); break; case QTestVersion: description = tr("QTest version: %1").arg(text.toString());