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 {
|
class QmlProfilerViewManager::QmlProfilerViewManagerPrivate {
|
||||||
public:
|
public:
|
||||||
QmlProfilerViewManagerPrivate(QmlProfilerViewManager *qq) { Q_UNUSED(qq); }
|
|
||||||
|
|
||||||
QmlProfilerTraceView *traceView;
|
QmlProfilerTraceView *traceView;
|
||||||
QList<QmlProfilerEventsView *> eventsViews;
|
QList<QmlProfilerEventsView *> eventsViews;
|
||||||
QmlProfilerStateManager *profilerState;
|
QmlProfilerStateManager *profilerState;
|
||||||
@@ -59,7 +57,7 @@ public:
|
|||||||
QmlProfilerViewManager::QmlProfilerViewManager(QObject *parent,
|
QmlProfilerViewManager::QmlProfilerViewManager(QObject *parent,
|
||||||
QmlProfilerModelManager *modelManager,
|
QmlProfilerModelManager *modelManager,
|
||||||
QmlProfilerStateManager *profilerState)
|
QmlProfilerStateManager *profilerState)
|
||||||
: QObject(parent), d(new QmlProfilerViewManagerPrivate(this))
|
: QObject(parent), d(new QmlProfilerViewManagerPrivate)
|
||||||
{
|
{
|
||||||
setObjectName(QLatin1String("QML Profiler View Manager"));
|
setObjectName(QLatin1String("QML Profiler View Manager"));
|
||||||
d->traceView = 0;
|
d->traceView = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user