forked from qt-creator/qt-creator
Utils: Rename ProjectExplorer::Runnable into Utils::ProcessRunData
Move it into Utils lib. Change-Id: I3b6c16d18439cabddf59afc03116f13c1970102c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -354,7 +354,7 @@ void DebuggerRunTool::setAbi(const Abi &abi)
|
||||
m_runParameters.toolChainAbi = abi;
|
||||
}
|
||||
|
||||
void DebuggerRunTool::setInferior(const Runnable &runnable)
|
||||
void DebuggerRunTool::setInferior(const ProcessRunData &runnable)
|
||||
{
|
||||
m_runParameters.inferior = runnable;
|
||||
}
|
||||
@@ -882,7 +882,7 @@ DebuggerRunTool::DebuggerRunTool(RunControl *runControl, AllowTerminal allowTerm
|
||||
}
|
||||
}
|
||||
|
||||
Runnable inferior = runControl->runnable();
|
||||
ProcessRunData inferior = runControl->runnable();
|
||||
// Normalize to work around QTBUG-17529 (QtDeclarative fails with 'File name case mismatch'...)
|
||||
inferior.workingDirectory = inferior.workingDirectory.normalizedPathName();
|
||||
m_runParameters.inferior = inferior;
|
||||
|
Reference in New Issue
Block a user