forked from qt-creator/qt-creator
adapters don't need to set DebuggerNotReady state
This commit is contained in:
@@ -163,7 +163,6 @@ void AttachGdbAdapter::handleExit(const GdbResponse &response)
|
|||||||
void AttachGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
void AttachGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
||||||
{
|
{
|
||||||
debugMessage(_("GDB PROESS FINISHED"));
|
debugMessage(_("GDB PROESS FINISHED"));
|
||||||
setState(DebuggerNotReady);
|
|
||||||
emit adapterShutDown();
|
emit adapterShutDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -212,7 +212,6 @@ void CoreGdbAdapter::handleExit(const GdbResponse &response)
|
|||||||
void CoreGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
void CoreGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
||||||
{
|
{
|
||||||
debugMessage(_("GDB PROESS FINISHED"));
|
debugMessage(_("GDB PROESS FINISHED"));
|
||||||
setState(DebuggerNotReady);
|
|
||||||
emit adapterShutDown();
|
emit adapterShutDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -280,7 +280,6 @@ void RemoteGdbAdapter::handleExit(const GdbResponse &response)
|
|||||||
void RemoteGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
void RemoteGdbAdapter::handleGdbFinished(int, QProcess::ExitStatus)
|
||||||
{
|
{
|
||||||
debugMessage(_("GDB PROESS FINISHED"));
|
debugMessage(_("GDB PROESS FINISHED"));
|
||||||
setState(DebuggerNotReady);
|
|
||||||
emit adapterShutDown();
|
emit adapterShutDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1548,7 +1548,6 @@ void TrkGdbAdapter::handleGdbFinished(int exitCode, QProcess::ExitStatus exitSta
|
|||||||
emitDelayedAdapterStartFailed(msg);// Potentially emitted from QProcess::start() on Windows
|
emitDelayedAdapterStartFailed(msg);// Potentially emitted from QProcess::start() on Windows
|
||||||
} else {
|
} else {
|
||||||
logMessage(msg);
|
logMessage(msg);
|
||||||
setState(DebuggerNotReady);
|
|
||||||
emit adapterShutDown();
|
emit adapterShutDown();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user