Use em-dash where appropriate

Issue #1064
This commit is contained in:
Craig Drummond
2017-08-15 22:57:07 +01:00
committed by Craig Drummond
parent bf6084d1e7
commit fd2f7bdbac
11 changed files with 19 additions and 19 deletions

View File

@@ -219,13 +219,13 @@ QVariant SearchModel::data(const QModelIndex &index, int role) const
QString al=song->displayAlbum();
if (!al.isEmpty()) {
if (!resp.isEmpty()) {
resp+=QLatin1String(" - ");
resp+=QLatin1String(" ");
}
resp+=al;
}
if (song->time>0) {
if (!resp.isEmpty()) {
resp+=QLatin1String(" - ");
resp+=QLatin1String(" ");
}
resp+=Utils::formatTime(song->time);
}