QNX: Fixed port for gdb server, fixes broken debugging on BlackBerry

As fillParameters(..) (debuggerplugin.cpp) now overrides the start
parameters for channel, pass the port to use when remote setup is
completed instead.

Change-Id: Iad4c3e4d092105cde32b52814218b77990549f61
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Tobias Nätterlund
2012-09-06 13:10:54 +02:00
committed by hjk
parent 498f4450fe
commit 0d092b051a
2 changed files with 1 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ void BlackBerryDebugSupport::launchRemoteApplication()
void BlackBerryDebugSupport::handleStarted()
{
m_engine->startParameters().attachPID = m_runner->pid();
m_engine->notifyEngineRemoteSetupDone(-1, -1);
m_engine->notifyEngineRemoteSetupDone(8000, -1);
}
void BlackBerryDebugSupport::handleStartFailed(const QString &message)