mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2369 Elm props: Only delete results from the closed files
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user