forked from qt-creator/qt-creator
Android: Pass Port by const ref instead of by value
Amends 501725b19b
Change-Id: I508303df23ca4d9d166c8d4ebe4126c4c8181ae9
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -10,10 +10,10 @@
|
|||||||
|
|
||||||
#include <utils/commandline.h>
|
#include <utils/commandline.h>
|
||||||
#include <utils/environment.h>
|
#include <utils/environment.h>
|
||||||
#include <utils/port.h>
|
|
||||||
|
|
||||||
namespace Android { class AndroidDeviceInfo; }
|
namespace Android { class AndroidDeviceInfo; }
|
||||||
namespace ProjectExplorer { class RunControl; }
|
namespace ProjectExplorer { class RunControl; }
|
||||||
|
namespace Utils { class Port; }
|
||||||
|
|
||||||
namespace Android::Internal {
|
namespace Android::Internal {
|
||||||
|
|
||||||
@@ -29,7 +29,7 @@ public:
|
|||||||
void asyncStop();
|
void asyncStop();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void remoteProcessStarted(Utils::Port debugServerPort, const QUrl &qmlServer, qint64 pid);
|
void remoteProcessStarted(const Utils::Port &debugServerPort, const QUrl &qmlServer, qint64 pid);
|
||||||
void remoteProcessFinished(const QString &errString = QString());
|
void remoteProcessFinished(const QString &errString = QString());
|
||||||
|
|
||||||
void remoteOutput(const QString &output);
|
void remoteOutput(const QString &output);
|
||||||
|
Reference in New Issue
Block a user