forked from qt-creator/qt-creator
		
	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:
		@@ -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, /**/);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user