QmlProfiler: Remove unused class member

Change-Id: I67b27bbe541054feec6642b6906360f99cdb5297
Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
This commit is contained in:
hjk
2013-07-30 09:31:28 +02:00
parent 62677a2b5d
commit a5fa89145c

View File

@@ -98,11 +98,6 @@ using namespace QmlProjectManager;
class QmlProfilerTool::QmlProfilerToolPrivate class QmlProfilerTool::QmlProfilerToolPrivate
{ {
public: public:
QmlProfilerToolPrivate(QmlProfilerTool *qq) : q(qq) {}
~QmlProfilerToolPrivate() {}
QmlProfilerTool *q;
QmlProfilerStateManager *m_profilerState; QmlProfilerStateManager *m_profilerState;
QmlProfilerClientManager *m_profilerConnections; QmlProfilerClientManager *m_profilerConnections;
QmlProfilerDataModel *m_profilerDataModel; QmlProfilerDataModel *m_profilerDataModel;
@@ -124,7 +119,7 @@ public:
}; };
QmlProfilerTool::QmlProfilerTool(QObject *parent) QmlProfilerTool::QmlProfilerTool(QObject *parent)
: IAnalyzerTool(parent), d(new QmlProfilerToolPrivate(this)) : IAnalyzerTool(parent), d(new QmlProfilerToolPrivate)
{ {
setObjectName(QLatin1String("QmlProfilerTool")); setObjectName(QLatin1String("QmlProfilerTool"));