FileInProjectFinder/Debugger: Use Utils::FileName for project directory

Change-Id: I5a3f376bea4ee06c6856e614f6f71974c2f5ca87
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Ulf Hermann
2018-08-21 17:15:53 +02:00
parent c56ddc7966
commit 9bbef89cdc
8 changed files with 19 additions and 29 deletions

View File

@@ -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';
}