QmlProfiler: Remove useless dtor

Signals will be disconnected by QObject dtor anyway.

Change-Id: I193fa207e02b8f91258d165f0a7eacb0ccc4b9df
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Ulf Hermann
2016-06-02 15:56:46 +02:00
parent c3a873b906
commit 7d5d026244
2 changed files with 0 additions and 6 deletions

View File

@@ -81,11 +81,6 @@ LocalQmlProfilerRunner::LocalQmlProfilerRunner(const Configuration &configuratio
this, &LocalQmlProfilerRunner::stop);
}
LocalQmlProfilerRunner::~LocalQmlProfilerRunner()
{
disconnect();
}
void LocalQmlProfilerRunner::start()
{
StandardRunnable runnable = m_configuration.debuggee;

View File

@@ -50,7 +50,6 @@ public:
LocalQmlProfilerRunner(const Configuration &configuration,
Debugger::AnalyzerRunControl *engine);
~LocalQmlProfilerRunner();
static Utils::Port findFreePort(QString &host);
static QString findFreeSocket();