Use QStringLiteral
This commit is contained in:
@@ -158,7 +158,7 @@ QVariant Queue::data(const QModelIndex &proxy_index, int role) const {
|
||||
const QString title = source_index.sibling(source_index.row(), Playlist::Column_Title).data().toString();
|
||||
|
||||
if (artist.isEmpty()) return title;
|
||||
return QString("%1 - %2").arg(artist, title);
|
||||
return QStringLiteral("%1 - %2").arg(artist, title);
|
||||
}
|
||||
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user