#3477 Export Property : Updates after code has moved to exportPropertyInViews

This commit is contained in:
Magne Sjaastad
2018-10-11 07:31:15 +02:00
parent c74637c0cc
commit e1e515b659
5 changed files with 87 additions and 137 deletions

View File

@@ -38,7 +38,8 @@ bool RicEclipseCellResultToFileImpl::writePropertyToTextFile(const QString&
RigEclipseCaseData* eclipseCase,
size_t timeStep,
const QString& resultName,
const QString& eclipseKeyword)
const QString& eclipseKeyword,
const double undefinedValue)
{
CVF_TIGHT_ASSERT(eclipseCase);
if (!eclipseCase) return false;
@@ -50,8 +51,6 @@ bool RicEclipseCellResultToFileImpl::writePropertyToTextFile(const QString&
return false;
}
const double undefinedValue = 0.0;
return writeResultToTextFile(
fileName, eclipseCase, resultAccessor.p(), eclipseKeyword, undefinedValue, "writePropertyToTextFile");
}