From 62f1800c82b5f637e1a6037229e66f1ce36dd8d5 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 7 Feb 2021 14:21:23 +0000 Subject: removed TagUpdater class git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@9696 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/playlistmodel.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/qmmpui/playlistmodel.cpp') 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(); } } -- cgit v1.2.3-13-gbd6f