mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixed inverted test for null pointer
p4#: 21127
This commit is contained in:
@@ -375,7 +375,7 @@ void RigCaseData::setActiveCellInfo(RifReaderInterface::PorosityModelResultType
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RigCaseData::computeActiveCellsGeometryBoundingBox()
|
void RigCaseData::computeActiveCellsGeometryBoundingBox()
|
||||||
{
|
{
|
||||||
if (m_activeCellInfo.notNull() || m_fractureActiveCellInfo.notNull())
|
if (m_activeCellInfo.isNull() || m_fractureActiveCellInfo.isNull())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user