Maemo: Fix remote debugging.

Was broken by 77e3bfe845.
This commit is contained in:
Christian Kandeler
2010-12-15 16:37:21 +01:00
parent c8f050715f
commit ee6bf38ea2
4 changed files with 10 additions and 9 deletions

View File

@@ -159,7 +159,7 @@ void RemoteGdbServerAdapter::uploadProcFinished()
&& m_uploadProc.exitCode() == 0)
handleSetupDone();
else
handleSetupFailed(m_uploadProc.errorString());
handleRemoteSetupFailed(m_uploadProc.errorString());
}
void RemoteGdbServerAdapter::setupInferior()
@@ -300,7 +300,7 @@ void RemoteGdbServerAdapter::shutdownAdapter()
m_engine->notifyAdapterShutdownOk();
}
void RemoteGdbServerAdapter::handleSetupDone(int gdbServerPort, int qmlPort)
void RemoteGdbServerAdapter::handleRemoteSetupDone(int gdbServerPort, int qmlPort)
{
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
@@ -323,7 +323,7 @@ void RemoteGdbServerAdapter::handleSetupDone()
m_engine->handleAdapterStarted();
}
void RemoteGdbServerAdapter::handleSetupFailed(const QString &reason)
void RemoteGdbServerAdapter::handleRemoteSetupFailed(const QString &reason)
{
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());