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:
Orgad Shaneh
2019-10-09 23:22:54 +03:00
committed by Orgad Shaneh
parent 3d21c7fdc3
commit b519c8bc92

View File

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