forked from qt-creator/qt-creator
FileInProjectFinder/Debugger: Use Utils::FileName for project directory
Change-Id: I5a3f376bea4ee06c6856e614f6f71974c2f5ca87 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -2498,7 +2498,7 @@ QString DebuggerEngine::formatStartParameters() const
|
||||
if (sp.attachPID.isValid())
|
||||
str << "PID: " << sp.attachPID.pid() << ' ' << sp.crashParameter << '\n';
|
||||
if (!sp.projectSourceDirectory.isEmpty()) {
|
||||
str << "Project: " << QDir::toNativeSeparators(sp.projectSourceDirectory) << '\n';
|
||||
str << "Project: " << sp.projectSourceDirectory.toUserOutput() << '\n';
|
||||
str << "Additional Search Directories:"
|
||||
<< sp.additionalSearchDirectories.join(QLatin1Char(' ')) << '\n';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user