1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-18 20:40:43 +01:00

Remove useless return statement which prevents using the 'friendly name' (even if we're supposed to rarely go here)

This commit is contained in:
Arnaud Bienner 2011-08-11 01:10:45 +02:00
parent 1a4aa8f641
commit 3b6af2298d

View File

@ -77,7 +77,6 @@ QString CddaLister::MakeFriendlyName(const QString& id) {
return QString(cd_info.psz_model);
}
cdio_destroy(cdio);
return QString();
return QString("CD (") + id + ")";
}