#4526 enable setting flow diagnostics results through Python

This commit is contained in:
Gaute Lindkvist
2019-07-30 09:21:43 +02:00
parent 979101fe96
commit f61df01694
6 changed files with 70 additions and 35 deletions

View File

@@ -85,7 +85,7 @@ void RiaGrpcServiceInterface::copyPdmObjectFromCafToRips(const caf::PdmObject* s
{
QString text;
QTextStream outStream(&text);
ricfHandle->writeFieldData(outStream);
ricfHandle->writeFieldData(outStream, false);
(*parametersMap)[keyword.toStdString()] = text.toStdString();
}
}
@@ -127,7 +127,7 @@ void RiaGrpcServiceInterface::assignFieldValue(const QString& stringValue, caf::
{
QTextStream stream(stringValue.toLatin1());
RicfMessages messages;
ricfHandle->readFieldData(stream, nullptr, &messages);
ricfHandle->readFieldData(stream, nullptr, &messages, false);
}
}