Fix build with newer Qt5

This commit is contained in:
Aleix Pol 2016-10-06 21:39:54 +02:00 committed by Janek Bevendorff
parent fe9bcc254a
commit bb8b91a100
No known key found for this signature in database
GPG Key ID: CFEC2F6850BFFA53

View File

@ -388,7 +388,7 @@ void KeePass2XmlReader::parseBinaries()
QString id = attr.value("ID").toString();
QByteArray data;
if (attr.value("Compressed").compare("True", Qt::CaseInsensitive) == 0) {
if (attr.value("Compressed").compare(QLatin1String("True"), Qt::CaseInsensitive) == 0) {
data = readCompressedBinary();
}
else {