Debugger: Fix typo and a missing newline

Change-Id: I220e4e6c185ab74b07575260c886d4e962b75137
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Orgad Shaneh
2017-07-13 18:13:50 +03:00
committed by Orgad Shaneh
parent 023edafe4c
commit 5299b81a4d

View File

@@ -2943,8 +2943,8 @@ static QString formatStartParameters(DebuggerRunParameters &sp)
if (sp.attachPID.isValid())
str << "PID: " << sp.attachPID.pid() << ' ' << sp.crashParameter << '\n';
if (!sp.projectSourceDirectory.isEmpty()) {
str << "Project: " << QDir::toNativeSeparators(sp.projectSourceDirectory);
str << "Addtional Search Directories:"
str << "Project: " << QDir::toNativeSeparators(sp.projectSourceDirectory) << '\n';
str << "Additional Search Directories:"
<< sp.additionalSearchDirectories.join(QLatin1Char(' ')) << '\n';
}
if (!sp.remoteChannel.isEmpty())