QmlProfiler: Remove unused members from QmlProfilerEnginePrivate

Change-Id: I597f214f3c7c912acc137f2fb453836ee712720b
Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
This commit is contained in:
hjk
2013-07-30 10:26:05 +02:00
parent bd064d50e6
commit 62677a2b5d

View File

@@ -64,14 +64,9 @@ namespace Internal {
class QmlProfilerEngine::QmlProfilerEnginePrivate class QmlProfilerEngine::QmlProfilerEnginePrivate
{ {
public: public:
QmlProfilerEnginePrivate(QmlProfilerEngine *qq, const AnalyzerStartParameters &sp) : q(qq), sp(sp), m_running(false) {} QmlProfilerEnginePrivate(const AnalyzerStartParameters &sp) : sp(sp), m_running(false) {}
bool attach(const QString &address, uint port);
QmlProfilerEngine *q;
QmlProfilerStateManager *m_profilerState; QmlProfilerStateManager *m_profilerState;
QTimer m_noDebugOutputTimer; QTimer m_noDebugOutputTimer;
QmlDebug::QmlOutputParser m_outputParser; QmlDebug::QmlOutputParser m_outputParser;
const AnalyzerStartParameters sp; const AnalyzerStartParameters sp;
@@ -86,7 +81,7 @@ QmlProfilerEngine::QmlProfilerEngine(IAnalyzerTool *tool,
const Analyzer::AnalyzerStartParameters &sp, const Analyzer::AnalyzerStartParameters &sp,
ProjectExplorer::RunConfiguration *runConfiguration) ProjectExplorer::RunConfiguration *runConfiguration)
: IAnalyzerEngine(tool, sp, runConfiguration) : IAnalyzerEngine(tool, sp, runConfiguration)
, d(new QmlProfilerEnginePrivate(this, sp)) , d(new QmlProfilerEnginePrivate(sp))
{ {
d->m_profilerState = 0; d->m_profilerState = 0;