diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp index bf9865558b6..c6f78deef13 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsview.cpp @@ -89,11 +89,6 @@ public: class QmlProfilerStatisticsView::QmlProfilerStatisticsViewPrivate { public: - QmlProfilerStatisticsViewPrivate(QmlProfilerStatisticsView *qq) : q(qq) {} - ~QmlProfilerStatisticsViewPrivate() {} - - QmlProfilerStatisticsView *q; - QmlProfilerStatisticsMainView *m_statsTree; QmlProfilerStatisticsRelativesView *m_statsChildren; QmlProfilerStatisticsRelativesView *m_statsParents; @@ -164,7 +159,7 @@ static void getSourceLocation(QStandardItem *infoItem, QmlProfilerStatisticsView::QmlProfilerStatisticsView(QmlProfilerModelManager *profilerModelManager, QWidget *parent) - : QmlProfilerEventsView(parent), d(new QmlProfilerStatisticsViewPrivate(this)) + : QmlProfilerEventsView(parent), d(new QmlProfilerStatisticsViewPrivate) { setObjectName(QLatin1String("QmlProfiler.Statistics.Dock")); setWindowTitle(tr("Statistics"));