From f2108c6ae3f4378aed4f5cc2a9f9e65f7c008f68 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 2 Sep 2014 15:50:53 +0200 Subject: [PATCH] QmlJS: Don't translate debug output Change-Id: I979427a5092fe15c1595a9a67c1d31bbe1911ab6 Reviewed-by: Fawzi Mohamed --- src/libs/qmljs/qmljsinterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp index c2f51385ae..c994be953c 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -1416,7 +1416,7 @@ void CppQmlTypesLoader::parseQmlTypeDescriptions(const QByteArray &contents, case 0xff: case 0xee: case 0x00: - qWarning() << QApplication::translate("CppQmlTypesLoader", "%1 seems not to be encoded in UTF8 or has a BOM.").arg(fileName); + qWarning() << fileName << "seems not to be encoded in UTF8 or has a BOM."; default: break; } } -- GitLab