QmlProfiler: Drop some useless members from statistics view

Change-Id: Ic116ecaa0cb6bf5d17b4351bd751a013cd5b9636
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Ulf Hermann
2016-12-20 12:58:00 +01:00
parent 879aa21063
commit 35782c8e9e

View File

@@ -89,11 +89,6 @@ public:
class QmlProfilerStatisticsView::QmlProfilerStatisticsViewPrivate class QmlProfilerStatisticsView::QmlProfilerStatisticsViewPrivate
{ {
public: public:
QmlProfilerStatisticsViewPrivate(QmlProfilerStatisticsView *qq) : q(qq) {}
~QmlProfilerStatisticsViewPrivate() {}
QmlProfilerStatisticsView *q;
QmlProfilerStatisticsMainView *m_statsTree; QmlProfilerStatisticsMainView *m_statsTree;
QmlProfilerStatisticsRelativesView *m_statsChildren; QmlProfilerStatisticsRelativesView *m_statsChildren;
QmlProfilerStatisticsRelativesView *m_statsParents; QmlProfilerStatisticsRelativesView *m_statsParents;
@@ -164,7 +159,7 @@ static void getSourceLocation(QStandardItem *infoItem,
QmlProfilerStatisticsView::QmlProfilerStatisticsView(QmlProfilerModelManager *profilerModelManager, QmlProfilerStatisticsView::QmlProfilerStatisticsView(QmlProfilerModelManager *profilerModelManager,
QWidget *parent) QWidget *parent)
: QmlProfilerEventsView(parent), d(new QmlProfilerStatisticsViewPrivate(this)) : QmlProfilerEventsView(parent), d(new QmlProfilerStatisticsViewPrivate)
{ {
setObjectName(QLatin1String("QmlProfiler.Statistics.Dock")); setObjectName(QLatin1String("QmlProfiler.Statistics.Dock"));
setWindowTitle(tr("Statistics")); setWindowTitle(tr("Statistics"));