diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-02-07 14:21:23 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2021-02-07 14:21:23 +0000 |
| commit | 62f1800c82b5f637e1a6037229e66f1ce36dd8d5 (patch) | |
| tree | c8eaee05c6df848824b7b578c64ba323c432fc4d /src/qmmpui/playlistmodel.cpp | |
| parent | 5a119002d992a47aeca66af31059d3769848d8c6 (diff) | |
| download | qmmp-62f1800c82b5f637e1a6037229e66f1ce36dd8d5.tar.gz qmmp-62f1800c82b5f637e1a6037229e66f1ce36dd8d5.tar.bz2 qmmp-62f1800c82b5f637e1a6037229e66f1ce36dd8d5.zip | |
removed TagUpdater class
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9696 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistmodel.cpp')
| -rw-r--r-- | src/qmmpui/playlistmodel.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp index 60bf7226d..cac8b956c 100644 --- a/src/qmmpui/playlistmodel.cpp +++ b/src/qmmpui/playlistmodel.cpp @@ -33,7 +33,6 @@ #include "fileloader_p.h" #include "playstate_p.h" #include "detailsdialog.h" -#include "tagupdater_p.h" #include "qmmpuisettings.h" #include "playlistmodel.h" @@ -677,8 +676,7 @@ void PlayListModel::showDetails(QWidget *parent) { QDialog *d = new DetailsDialog(selected_tracks, parent); d->setAttribute(Qt::WA_DeleteOnClose, true); - TagUpdater *updater = new TagUpdater(d, selected_tracks); - connect(updater, SIGNAL(destroyed(QObject *)),SLOT(updateMetaData())); + connect(d, SIGNAL(destroyed(QObject *)),SLOT(updateMetaData())); d->show(); } } @@ -691,8 +689,7 @@ void PlayListModel::showDetailsForCurrent(QWidget *parent) l.append(m_current_track); QDialog *d = new DetailsDialog(l, parent); d->setAttribute(Qt::WA_DeleteOnClose, true); - TagUpdater *updater = new TagUpdater(d, l); - connect(updater, SIGNAL(destroyed(QObject *)),SLOT(updateMetaData())); + connect(d, SIGNAL(destroyed(QObject *)),SLOT(updateMetaData())); d->show(); } } |
