LSP: More Qt 6

Change-Id: I3c4b907c4bc5ee96f4716b03ec238a03704d56a1
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
hjk
2020-06-18 17:35:27 +02:00
committed by David Schulz
parent e323529b3c
commit 3b40809d1c

View File

@@ -114,7 +114,7 @@ static void parseContentLength(BaseMessage &message, QByteArray contentLength, Q
message.contentLength = contentLength.toInt(&ok); message.contentLength = contentLength.toInt(&ok);
if (!ok) { if (!ok) {
parseError = BaseMessage::tr("Expected an integer in \"%1\", but got \"%2\".") parseError = BaseMessage::tr("Expected an integer in \"%1\", but got \"%2\".")
.arg(contentLengthFieldName, QString::fromLatin1(contentLength)); .arg(QString::fromLatin1(contentLengthFieldName), QString::fromLatin1(contentLength));
} }
} }