Replace QLatin1String with QStringLiteral

This commit is contained in:
Jonas Kvinge
2024-08-25 01:08:25 +02:00
parent 8da616491d
commit 3f3059c98b
4 changed files with 23 additions and 23 deletions

View File

@@ -1935,7 +1935,7 @@ void Song::MergeUserSetData(const Song &other, const bool merge_playcount, const
}
QString Song::AlbumKey() const {
return QStringLiteral("%1|%2|%3").arg(is_compilation() ? QLatin1String("_compilation") : effective_albumartist(), has_cue() ? cue_path() : QLatin1String(""), effective_album());
return QStringLiteral("%1|%2|%3").arg(is_compilation() ? QStringLiteral("_compilation") : effective_albumartist(), has_cue() ? cue_path() : QLatin1String(""), effective_album());
}
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)