#3958 Refactoring: Remove more direct use of scalarResultIndex related to CellEdge

This commit is contained in:
Jacob Støren
2019-01-23 16:42:03 +01:00
parent d8eded7d49
commit 98f2b50180
4 changed files with 13 additions and 9 deletions

View File

@@ -371,7 +371,7 @@ void RimCellEdgeColors::cellEdgeMetaData(std::vector<RimCellEdgeMetaData>* metaD
for (size_t i = 0; i < 6; i++)
{
RimCellEdgeMetaData metaData;
metaData.m_resultIndex = resultIndices[i];
metaData.m_eclipseResultAddress = resultIndices[i];
metaData.m_resultVariable = resultNames[i];
metaData.m_isStatic = isStatic;

View File

@@ -38,7 +38,7 @@ class RimRegularLegendConfig;
class RimCellEdgeMetaData
{
public:
RigEclipseResultAddress m_resultIndex;
RigEclipseResultAddress m_eclipseResultAddress;
QString m_resultVariable;
bool m_isStatic;
};