forked from qt-creator/qt-creator
QmlProfiler: Remove unused members from QmlProfilerEnginePrivate
Change-Id: I597f214f3c7c912acc137f2fb453836ee712720b Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
This commit is contained in:
@@ -64,14 +64,9 @@ namespace Internal {
|
||||
class QmlProfilerEngine::QmlProfilerEnginePrivate
|
||||
{
|
||||
public:
|
||||
QmlProfilerEnginePrivate(QmlProfilerEngine *qq, const AnalyzerStartParameters &sp) : q(qq), sp(sp), m_running(false) {}
|
||||
|
||||
bool attach(const QString &address, uint port);
|
||||
|
||||
QmlProfilerEngine *q;
|
||||
QmlProfilerEnginePrivate(const AnalyzerStartParameters &sp) : sp(sp), m_running(false) {}
|
||||
|
||||
QmlProfilerStateManager *m_profilerState;
|
||||
|
||||
QTimer m_noDebugOutputTimer;
|
||||
QmlDebug::QmlOutputParser m_outputParser;
|
||||
const AnalyzerStartParameters sp;
|
||||
@@ -86,7 +81,7 @@ QmlProfilerEngine::QmlProfilerEngine(IAnalyzerTool *tool,
|
||||
const Analyzer::AnalyzerStartParameters &sp,
|
||||
ProjectExplorer::RunConfiguration *runConfiguration)
|
||||
: IAnalyzerEngine(tool, sp, runConfiguration)
|
||||
, d(new QmlProfilerEnginePrivate(this, sp))
|
||||
, d(new QmlProfilerEnginePrivate(sp))
|
||||
{
|
||||
d->m_profilerState = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user