Skip to content
Snippets Groups Projects
Commit e65b976b authored by Aurindam Jana's avatar Aurindam Jana
Browse files

AndroidDebug: Removed unused qmlport member variable


Change-Id: I339e2e4f4f0ce52b1220745357170a457a14be35
Reviewed-by: default avatarAurindam Jana <aurindam.jana@digia.com>
parent 39d8a01a
No related branches found
No related tags found
No related merge requests found
...@@ -131,12 +131,10 @@ AndroidDebugSupport::AndroidDebugSupport(AndroidRunConfiguration *runConfig, ...@@ -131,12 +131,10 @@ AndroidDebugSupport::AndroidDebugSupport(AndroidRunConfiguration *runConfig,
DebuggerRunControl *runControl) DebuggerRunControl *runControl)
: QObject(runControl), m_runControl(runControl), : QObject(runControl), m_runControl(runControl),
m_runner(new AndroidRunner(this, runConfig, true)), m_runner(new AndroidRunner(this, runConfig, true)),
m_gdbServerPort(5039), m_gdbServerPort(5039)
m_qmlPort(0)
{ {
Debugger::DebuggerRunConfigurationAspect *aspect Debugger::DebuggerRunConfigurationAspect *aspect
= runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>(); = runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>();
m_qmlPort = aspect->qmlDebugServerPort();
Q_ASSERT(aspect->useCppDebugger() || aspect->useQmlDebugger()); Q_ASSERT(aspect->useCppDebugger() || aspect->useQmlDebugger());
connect(m_runControl->engine(), SIGNAL(requestRemoteSetup()), connect(m_runControl->engine(), SIGNAL(requestRemoteSetup()),
......
...@@ -66,7 +66,6 @@ private: ...@@ -66,7 +66,6 @@ private:
const QString m_dumperLib; const QString m_dumperLib;
int m_gdbServerPort; int m_gdbServerPort;
int m_qmlPort;
}; };
} // namespace Internal } // namespace Internal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment