debugger: show name of core file in output pane.

This is a partial fix for http://bugreports.qt.nokia.com/browse/QTCREATORBUG-1574.
This commit is contained in:
hjk
2010-06-07 16:40:33 +02:00
parent c8a1b12319
commit 4f772ea0e0
2 changed files with 6 additions and 0 deletions

View File

@@ -169,6 +169,11 @@ DebuggerRunControl::DebuggerRunControl(DebuggerManager *manager, const DebuggerS
m_startParameters->useTerminal = false;
}
QString DebuggerRunControl::displayName() const
{
return tr("Core file: \"%1\"").arg(m_startParameters->coreFile);
}
void DebuggerRunControl::setCustomEnvironment(ProjectExplorer::Environment env)
{
m_startParameters->environment = env.toStringList();