Fix build error after merge

Change-Id: Idc8bd0cece32fa2095598cef931a369f35d6be11
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Eike Ziller
2017-10-25 16:18:58 +02:00
committed by Orgad Shaneh
parent 7f626b1182
commit a3d845815a
3 changed files with 7 additions and 3 deletions

View File

@@ -30,6 +30,8 @@
#include <projectexplorer/runconfiguration.h>
#include <projectexplorer/runnables.h>
#include <utils/url.h>
#include <QCoreApplication>
using namespace ProjectExplorer;
@@ -107,7 +109,7 @@ IDevice::Ptr AndroidDevice::clone() const
QUrl AndroidDevice::toolControlChannel(const ControlChannelHint &) const
{
QUrl url;
url.setScheme(urlTcpScheme());
url.setScheme(Utils::urlTcpScheme());
url.setHost("localhost");
return url;
}