forked from qt-creator/qt-creator
AndroidDebug: Removed unused qmlport member variable
Change-Id: I339e2e4f4f0ce52b1220745357170a457a14be35 Reviewed-by: Aurindam Jana <aurindam.jana@digia.com>
This commit is contained in:
@@ -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:
|
|||||||
const QString m_dumperLib;
|
const QString m_dumperLib;
|
||||||
|
|
||||||
int m_gdbServerPort;
|
int m_gdbServerPort;
|
||||||
int m_qmlPort;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
|
|||||||
Reference in New Issue
Block a user