Debugger: Use a SimpleTargetLaucher for gdbserver

Makes remote output appear again in the Application Output pane,
and is arguably the right thing to do anyway.

Change-Id: I05c365eec43f60a85482b8ae7d5856b3a31ee6f8
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2017-07-07 15:40:46 +02:00
parent e2becd2b0b
commit 8f1f333004
2 changed files with 5 additions and 18 deletions

View File

@@ -120,7 +120,7 @@ private:
Utils::Port m_qmlServerPort;
};
class DEBUGGER_EXPORT GdbServerRunner : public ProjectExplorer::RunWorker
class DEBUGGER_EXPORT GdbServerRunner : public ProjectExplorer::SimpleTargetRunner
{
Q_OBJECT
@@ -131,9 +131,7 @@ public:
private:
void start() override;
void stop() override;
ProjectExplorer::ApplicationLauncher m_gdbServer;
GdbServerPortsGatherer *m_portsGatherer;
};