Revert "Use em-dash where appropriate"

This reverts commit aa41876e0c.
This commit is contained in:
Craig Drummond
2017-08-15 23:00:26 +01:00
parent aa41876e0c
commit 3ef49aa27d
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);
}