mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#6232 Pointer adresses are not quoted in PdmFieldIOScriptability.
The pointers come in as ModeledWellPath:12345 without quotes.
This commit is contained in:
parent
7c69fc61ef
commit
1e42a2f690
@ -330,7 +330,11 @@ struct PdmFieldScriptabilityIOHandler<DataType*>
|
||||
fieldValue = nullptr; // Default initialized to nullptr
|
||||
|
||||
QString fieldString;
|
||||
PdmFieldScriptabilityIOHandler<QString>::writeToField( fieldString, inputStream, errorMessageContainer, true );
|
||||
bool stringsAreQuoted = false;
|
||||
PdmFieldScriptabilityIOHandler<QString>::writeToField( fieldString,
|
||||
inputStream,
|
||||
errorMessageContainer,
|
||||
stringsAreQuoted );
|
||||
|
||||
if ( inputStream.status() == QTextStream::ReadCorruptData )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user