Remove some unused bits

This commit is contained in:
David Sansome 2011-02-03 20:59:14 +00:00
parent 7bdac8fba6
commit 2a68ecc726
1 changed files with 0 additions and 2 deletions

View File

@ -170,13 +170,11 @@ QStringList RadioModel::mimeTypes() const {
QMimeData* RadioModel::mimeData(const QModelIndexList& indexes) const {
QList<QUrl> urls;
QModelIndexList items;
foreach (const QModelIndex& index, indexes) {
if (!IsPlayable(index))
continue;
items << index;
urls << index.data(Role_Url).toUrl();
}