forked from qt-creator/qt-creator
		
	Debugger: Use Utils::QtcProcess instead of GdbProcess
The original use case of running GDB itself remotely is not present anymore. Change-Id: I283a27216d6a8849fea7d9ca8df6b94571fb99fd Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
		@@ -41,6 +41,7 @@
 | 
			
		||||
#include <coreplugin/id.h>
 | 
			
		||||
 | 
			
		||||
#include <projectexplorer/devicesupport/idevice.h>
 | 
			
		||||
#include <utils/qtcprocess.h>
 | 
			
		||||
 | 
			
		||||
#include <QProcess>
 | 
			
		||||
#include <QTextCodec>
 | 
			
		||||
@@ -474,7 +475,9 @@ protected:
 | 
			
		||||
    bool prepareCommand();
 | 
			
		||||
    void interruptLocalInferior(qint64 pid);
 | 
			
		||||
 | 
			
		||||
    GdbProcess *m_gdbProc;
 | 
			
		||||
protected:
 | 
			
		||||
    Utils::QtcProcess m_gdbProc;
 | 
			
		||||
    QString m_errorString;
 | 
			
		||||
    ProjectExplorer::DeviceProcessSignalOperation::Ptr m_signalOperation;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user