mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
ExportProperty. Fix build error
This commit is contained in:
parent
355b980032
commit
0914d5b333
@ -92,7 +92,9 @@ void RicfExportProperty::execute()
|
||||
|
||||
auto timeStepIndex = m_timeStepIndex >= 0 ? m_timeStepIndex : view->currentTimeStep();
|
||||
auto propertyName = !m_propertyName().isEmpty() ? m_propertyName : view->cellResult()->resultVariable();
|
||||
auto propertyType = !m_propertyName().isEmpty() ? m_type() : view->cellResult()->resultType();
|
||||
RiaDefines::ResultCatType propertyType;
|
||||
if (!m_propertyName().isEmpty()) propertyType = m_type();
|
||||
else propertyType = view->cellResult()->resultType();
|
||||
|
||||
QString filePath = m_path;
|
||||
if (filePath.isNull())
|
||||
|
Loading…
Reference in New Issue
Block a user