QSslCertificate: fold a string literal correctly

Change-Id: I8f812002302d3b74af252fa66e9e13154bbf80e1
Reviewed-by: Andrew Knight <andrew.knight@digia.com>
This commit is contained in:
Marc Mutz 2014-09-28 01:12:22 +02:00
parent fa91bb9a02
commit 15fc84c48b

View File

@ -77,8 +77,8 @@ bool QSslCertificate::isSelfSigned() const
if (d->null)
return false;
qWarning("QSslCertificate::isSelfSigned: This function does not check, whether the certificate \
is actually signed. It just checks whether issuer and subject are identical");
qWarning("QSslCertificate::isSelfSigned: This function does not check, whether the certificate "
"is actually signed. It just checks whether issuer and subject are identical");
return d->subjectMatchesIssuer;
}