#2091 Cross Plot : Rename to using X or Y as postfix to interface

This commit is contained in:
Magne Sjaastad
2017-11-15 11:36:33 +01:00
parent c0d26a1d4e
commit 3b31c4800f
18 changed files with 145 additions and 93 deletions

View File

@@ -293,10 +293,10 @@ RimSummaryCurve* RicPlotProductionRateFeature::addSummaryCurve( RimSummaryPlot*
RimSummaryCurve* newCurve = new RimSummaryCurve();
plot->addCurveAndUpdate(newCurve);
newCurve->setSummaryCase(gridSummaryCase);
newCurve->setSummaryAddress(addr);
newCurve->setSummaryCaseY(gridSummaryCase);
newCurve->setSummaryAddressY(addr);
newCurve->setColor(color);
newCurve->setYAxis(plotAxis);
newCurve->setLeftOrRightAxisY(plotAxis);
return newCurve;
}