aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androidrunner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/android/androidrunner.h')
-rw-r--r--src/plugins/android/androidrunner.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/android/androidrunner.h b/src/plugins/android/androidrunner.h
index 86defe19ce..e745305d32 100644
--- a/src/plugins/android/androidrunner.h
+++ b/src/plugins/android/androidrunner.h
@@ -53,7 +53,7 @@ public:
const QString &intentName = QString());
~AndroidRunner() override;
- Utils::Port gdbServerPort() const { return m_gdbServerPort; }
+ Utils::Port debugServerPort() const { return m_debugServerPort; } // GDB or LLDB
QUrl qmlServer() const { return m_qmlServer; }
Utils::ProcessHandle pid() const { return m_pid; }
@@ -72,7 +72,7 @@ private:
void remoteOutput(const QString &output);
void remoteErrorOutput(const QString &output);
void gotRemoteOutput(const QString &output);
- void handleRemoteProcessStarted(Utils::Port gdbServerPort, const QUrl &qmlServer, qint64 pid);
+ void handleRemoteProcessStarted(Utils::Port debugServerPort, const QUrl &qmlServer, qint64 pid);
void handleRemoteProcessFinished(const QString &errString = QString());
void checkAVD();
void launchAVD();
@@ -83,7 +83,7 @@ private:
QTimer m_checkAVDTimer;
QScopedPointer<AndroidRunnerWorker> m_worker;
QPointer<ProjectExplorer::Target> m_target;
- Utils::Port m_gdbServerPort;
+ Utils::Port m_debugServerPort;
QUrl m_qmlServer;
Utils::ProcessHandle m_pid;
QmlDebug::QmlOutputParser m_outputParser;