forked from qt-creator/qt-creator
Utils: Fix display of first argument
Broke in 00b692e67e
.
Change-Id: I65fae0f439a49ccce136626c7c88acd9c9c1693b
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
3d21c7fdc3
commit
b519c8bc92
@@ -151,7 +151,7 @@ QString ShellCommand::displayName() const
|
||||
result = tr("UNKNOWN");
|
||||
|
||||
if (!job.command.arguments().isEmpty())
|
||||
result += ' ' + job.command.arguments().at(0);
|
||||
result += ' ' + job.command.splitArguments().at(0);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user