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

@@ -218,7 +218,7 @@ SongList CueParser::Load(QIODevice *device, const QString &playlist_path, const
if (!line_additional.isEmpty()) {
// If there's none "01" index, we'll just take the first one also, we'll take the "01" index even if it's the last one
if (line_value == QStringLiteral("01") || index.isEmpty()) {
if (line_value == QLatin1String("01") || index.isEmpty()) {
index = line_additional;
}