Skip to content

Commit

Permalink
make single call to QString::arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing committed Oct 24, 2019
1 parent 154db6f commit 146f399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/coverartcache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mixxx::Logger kLogger("CoverArtCache");

QString pixmapCacheKey(quint16 hash, int width) {
return QString("CoverArtCache_%1_%2")
.arg(QString::number(hash)).arg(width);
.arg(QString::number(hash), QString::number(width));
}

// The transformation mode when scaling images
Expand Down

0 comments on commit 146f399

Please sign in to comment.