OrganizeFormat: Replace QLatin1String with QStringLiteral

This commit is contained in:
Jonas Kvinge 2024-06-13 00:40:08 +02:00
parent 2f546f214d
commit f33b30fe79
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ OrganizeFormat::GetFilenameForSongResult OrganizeFormat::GetFilenameForSong(cons
if (replace_spaces_) filepath.replace(QRegularExpression(QStringLiteral("\\s")), QStringLiteral("_"));
if (!extension.isEmpty()) {
filepath.append(QLatin1String(".%1").arg(extension));
filepath.append(QStringLiteral(".%1").arg(extension));
}
return GetFilenameForSongResult(filepath, unique_filename);