forked from qt-creator/qt-creator
Let PortsGatherer produce full URLs instead of ports only
This is what the consuming code expects in most cases. Change-Id: I135592039e28b994996186f627215ab1d2f8d6dc Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
@@ -199,8 +199,11 @@ void IosRunner::start()
|
||||
this, &IosRunner::handleFinished);
|
||||
|
||||
QStringList args = QtcProcess::splitArgs(m_arguments, OsTypeMac);
|
||||
if (m_qmlServerPort.isValid())
|
||||
args.append(QmlDebug::qmlDebugTcpArguments(m_qmlDebugServices, m_qmlServerPort));
|
||||
if (m_qmlServerPort.isValid()) {
|
||||
QUrl qmlServer;
|
||||
qmlServer.setPort(m_qmlServerPort.number());
|
||||
args.append(QmlDebug::qmlDebugTcpArguments(m_qmlDebugServices, qmlServer));
|
||||
}
|
||||
|
||||
m_toolHandler->requestRunApp(bundlePath(), args, runType(), deviceId());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user