Fix debugger detection when attaching from output pane.

Obtain RunConfiguration from RunControl add logic to
use the ABI if that fails.

Task-number: QTCREATORBUG-7677

Change-Id: Iebf053e6b7a25644a4d4c02b80bf952ef9e6a078
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Friedemann Kleint
2012-08-31 15:06:07 +02:00
committed by hjk
parent 73f5f71282
commit 71ea54c036
3 changed files with 30 additions and 15 deletions

View File

@@ -558,6 +558,11 @@ Abi RunControl::abi() const
return Abi();
}
RunConfiguration *RunControl::runConfiguration() const
{
return m_runConfiguration.data();
}
ProcessHandle RunControl::applicationProcessHandle() const
{
return m_applicationProcessHandle;