forked from qt-creator/qt-creator
Utils/ProjectExplorer: Use FilePath for Runnable::workingDirectory
... and in some using code. Change-Id: I231ea56628908f7d305d13f07eabe8803fe8a791 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -2627,8 +2627,7 @@ QString DebuggerEngine::formatStartParameters() const
|
||||
str << " [terminal]";
|
||||
str << '\n';
|
||||
if (!sp.inferior.workingDirectory.isEmpty())
|
||||
str << "Directory: " << QDir::toNativeSeparators(sp.inferior.workingDirectory)
|
||||
<< '\n';
|
||||
str << "Directory: " << sp.inferior.workingDirectory.toUserOutput() << '\n';
|
||||
}
|
||||
if (!sp.debugger.executable.isEmpty())
|
||||
str << "Debugger: " << sp.debugger.executable.toUserOutput() << '\n';
|
||||
|
||||
Reference in New Issue
Block a user