ShellCommand: Call c'tor of CommandResult explicitly

Change-Id: I3b9d0cda10a480577b7175e8bd6039299e4b3ff0
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2022-07-29 16:53:53 +02:00
parent 0a1ac481ed
commit 93e0cab2df

View File

@@ -333,7 +333,7 @@ CommandResult ShellCommand::runCommand(const CommandLine &command, const FilePat
}
}
emit runCommandFinished(dir);
return {proc};
return CommandResult(proc);
}
void ShellCommand::runFullySynchronous(QtcProcess &process)