debugger: remove inferiorStarted() signal.

It had unclear semantics and was only used to show a statusmessage.
We do that directly now.
This commit is contained in:
hjk
2009-09-29 10:15:52 +02:00
parent f685aa2361
commit 10fa3b2b76
9 changed files with 24 additions and 33 deletions

View File

@@ -151,7 +151,8 @@ void CoreGdbAdapter::handleTargetCore(const GdbResponse &response)
QTC_ASSERT(state() == InferiorStarting, qDebug() << state());
if (response.resultClass == GdbResultDone) {
setState(InferiorStopped);
emit inferiorStarted();
debugMessage(_("INFERIOR STARTED"));
showStatusMessage(tr("Attached to core."));
m_engine->updateAll();
} else {
QTC_ASSERT(response.resultClass == GdbResultError, /**/);