[Information Panel] Remove unused PlacesItemModel

This commit is contained in:
Kai Uwe Broulik 2021-12-16 13:05:11 +01:00
parent 55785991be
commit 4bfc339bac
2 changed files with 0 additions and 8 deletions

View file

@ -23,9 +23,6 @@
#include <Baloo/FileMetaDataWidget>
#include <panels/places/placesitem.h>
#include <panels/places/placesitemmodel.h>
#include <Phonon/BackendCapabilities>
#include <Phonon/MediaObject>
@ -60,7 +57,6 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) :
m_nameLabel(nullptr),
m_metaDataWidget(nullptr),
m_metaDataArea(nullptr),
m_placesItemModel(nullptr),
m_isVideo(false)
{
parent->installEventFilter(this);
@ -151,8 +147,6 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) :
layout->addWidget(m_configureButtons);
grabGesture(Qt::TapAndHoldGesture);
m_placesItemModel = new PlacesItemModel(this);
}
InformationPanelContent::~InformationPanelContent()

View file

@ -17,7 +17,6 @@
class KFileItemList;
class PhononWidget;
class PixmapViewer;
class PlacesItemModel;
class QPixmap;
class QDialogButtonBox;
class QString;
@ -151,7 +150,6 @@ private:
QLabel* m_configureLabel;
QDialogButtonBox* m_configureButtons;
PlacesItemModel* m_placesItemModel;
bool m_isVideo;
};