QmlDebug: Fix debugging on local machine

Fix regression in that it always assumed that you want to debug
Symbian (over USB).
This commit is contained in:
Kai Koehne
2011-04-13 15:47:13 +02:00
parent e6620167fc
commit c8aa3dc8d2
4 changed files with 10 additions and 10 deletions

View File

@@ -55,9 +55,9 @@ public:
CommunicationChannelUsb
};
enum DebugClient {
DebugClientTrk,
DebugClientCoda
enum SymbianDebugClient {
SymbianDebugClientTrk,
SymbianDebugClientCoda
};
DebuggerStartParameters()
@@ -70,9 +70,9 @@ public:
connParams(Utils::SshConnectionParameters::NoProxy),
startMode(NoStartMode),
executableUid(0),
communicationChannel(CommunicationChannelUsb),
communicationChannel(CommunicationChannelTcpIp),
serverPort(0),
debugClient(DebugClientTrk)
debugClient(SymbianDebugClientTrk)
{}
QString executable;
@@ -122,7 +122,7 @@ public:
CommunicationChannel communicationChannel;
QString serverAddress;
quint16 serverPort;
DebugClient debugClient;
SymbianDebugClient debugClient;
};
} // namespace Debugger