Implement setStandardInputFile() in ProcessLauncherImpl

Change-Id: I4d77c86ecb750573ce5421ca7300eb27f9f76108
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2021-07-12 15:11:30 +02:00
parent d005e71da0
commit 17f907da9b
6 changed files with 8 additions and 3 deletions

View File

@@ -58,12 +58,12 @@ StartProcessPacket::StartProcessPacket(quintptr token)
void StartProcessPacket::doSerialize(QDataStream &stream) const
{
stream << command << arguments << workingDir << env << openMode << channelMode;
stream << command << arguments << workingDir << env << openMode << channelMode << standardInputFile;
}
void StartProcessPacket::doDeserialize(QDataStream &stream)
{
stream >> command >> arguments >> workingDir >> env >> openMode >> channelMode;
stream >> command >> arguments >> workingDir >> env >> openMode >> channelMode >> standardInputFile;
}