forked from qt-creator/qt-creator
Debugger: Fix typo and a missing newline
Change-Id: I220e4e6c185ab74b07575260c886d4e962b75137 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
023edafe4c
commit
5299b81a4d
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user