(#707) Fixed regression regarding well pipe and well cells

Introduced in 707e8c6 and not quite fixed in 179f0c9
This commit is contained in:
Jacob Støren
2015-12-11 17:34:52 +01:00
parent 7bcf6bfd89
commit d01367a932
4 changed files with 18 additions and 17 deletions

View File

@@ -47,11 +47,11 @@ public:
virtual ~RimEclipseWell();
void setReservoirView(RimEclipseView* ownerReservoirView);
void setWellIndex(size_t val) { m_wellIndex = val; }
void setWellResults(RigSingleWellResultsData* wellResults) { m_wellResults = wellResults;}
void setWellResults(RigSingleWellResultsData* wellResults, size_t resultWellIndex);
RigSingleWellResultsData* wellResults() { return m_wellResults.p(); }
size_t resultWellIndex() { return m_resultWellIndex; }
bool isWellPipeVisible(size_t frameIndex);
bool calculateWellPipeVisibility(size_t frameIndex);
@@ -76,7 +76,7 @@ public:
private:
cvf::ref<RigSingleWellResultsData> m_wellResults;
size_t m_wellIndex;
size_t m_resultWellIndex;
RimEclipseView* m_reservoirView;
};