From 935e31e01dcd5d680d6dda4b3fd9136649436f39 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Wed, 16 Sep 2009 12:45:41 +0000 Subject: enabled support for streams git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1226 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/playlistmodel.cpp | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'src/qmmpui/playlistmodel.cpp') diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp index 893850e51..3428c0390 100644 --- a/src/qmmpui/playlistmodel.cpp +++ b/src/qmmpui/playlistmodel.cpp @@ -358,29 +358,6 @@ void PlayListModel::showDetails() { if (m_items.at(i)->isSelected()) { - if (!QFile::exists(m_items.at(i)->url())) - { - PlayListItem *item = m_items.at(i); - QString str; - str.append(tr("URL:") + " %1\n"); - str.append(tr("Title:") + " %2\n"); - str.append(tr("Artist:") + " %3\n"); - str.append(tr("Album:") + " %4\n"); - str.append(tr("Genre:") + " %5\n"); - str.append(tr("Comment:") + " %6\n"); - str.append(tr("Composer:") + " %7\n"); - str.append(tr("Disc number:") + " %8"); - str = str.arg(item->url()) - .arg(item->title().isEmpty() ? item->text() : item->title()) - .arg(item->artist()) - .arg(item->album()) - .arg(item->genre()) - .arg(item->comment()) - .arg(item->composer()) - .arg(item->discNumber()); - QMessageBox::information(0, m_items.at(i)->url(), str); - return; - } QDialog *d = new DetailsDialog(m_items.at(i)); //TODO set parent widget TagUpdater *updater = new TagUpdater(d, m_items.at(i)); m_editing_items.append(m_items.at(i)); -- cgit v1.2.3-13-gbd6f