Replace QStringLiteral with QLatin1String

This commit is contained in:
Jonas Kvinge
2024-06-12 18:08:54 +02:00
parent f5002cae36
commit a36bf2df65
3 changed files with 6 additions and 12 deletions

View File

@@ -502,7 +502,7 @@ bool Database::IntegrityCheck(const QSqlDatabase &db) {
QString message = q.value(0).toString();
// If no errors are found, a single row with the value "ok" is returned
if (message == QStringLiteral("ok")) {
if (message == QLatin1String("ok")) {
ok = true;
break;
}