#2369 Elm props: Only delete results from the closed files

This commit is contained in:
Rebecca Cox
2018-01-15 16:09:52 +01:00
parent b092565a61
commit 58123f4a49
4 changed files with 34 additions and 7 deletions

View File

@@ -98,6 +98,19 @@ public:
}
return (componentName < other.componentName);
}
bool operator== (const RigFemResultAddress& other) const
{
if ( resultPosType != other.resultPosType
|| fieldName != other.fieldName
|| componentName != other.componentName
|| timeLapseBaseFrameIdx != other.timeLapseBaseFrameIdx)
{
return false;
}
return true;
}
};