forked from qt-creator/qt-creator
QmlProfiler: Remove QmlProfilerViewManagerPrivate ctor
Change-Id: I7b7845a5943f43c8166424e2ba9045bb5d1f076a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user