From 62677a2b5ddd011a480c035e4c3ec40abad2229d Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 30 Jul 2013 10:26:05 +0200 Subject: [PATCH] QmlProfiler: Remove unused members from QmlProfilerEnginePrivate Change-Id: I597f214f3c7c912acc137f2fb453836ee712720b Reviewed-by: Christiaan Janssen --- src/plugins/qmlprofiler/qmlprofilerengine.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.cpp b/src/plugins/qmlprofiler/qmlprofilerengine.cpp index 19395845b60..dcebad21077 100644 --- a/src/plugins/qmlprofiler/qmlprofilerengine.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerengine.cpp @@ -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;