summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-12-14 13:43:07 +0100
committerUlf Hermann <ulf.hermann@qt.io>2016-12-14 16:48:29 +0000
commit207b5315cfa07e8f091a69e059b29c49572e1a90 (patch)
tree7b0a52ef36f31a14117301204df0adc29091ed05 /src/plugins/qmlprofiler
parent26f0c7c3caa6a12310b2a3443d2e8aaaf35f6ec6 (diff)
downloadqt-creator-207b5315cfa07e8f091a69e059b29c49572e1a90.tar.gz
QmlProfiler: Remove QmlProfilerViewManagerPrivate ctor
Change-Id: I7b7845a5943f43c8166424e2ba9045bb5d1f076a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/qmlprofiler')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
index af6523ab77..5f9e905873 100644
--- a/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilerviewmanager.cpp
@@ -48,8 +48,6 @@ namespace Internal {
class QmlProfilerViewManager::QmlProfilerViewManagerPrivate {
public:
- QmlProfilerViewManagerPrivate(QmlProfilerViewManager *qq) { Q_UNUSED(qq); }
-
QmlProfilerTraceView *traceView;
QList<QmlProfilerEventsView *> eventsViews;
QmlProfilerStateManager *profilerState;
@@ -59,7 +57,7 @@ public:
QmlProfilerViewManager::QmlProfilerViewManager(QObject *parent,
QmlProfilerModelManager *modelManager,
QmlProfilerStateManager *profilerState)
- : QObject(parent), d(new QmlProfilerViewManagerPrivate(this))
+ : QObject(parent), d(new QmlProfilerViewManagerPrivate)
{
setObjectName(QLatin1String("QML Profiler View Manager"));
d->traceView = 0;