Rename to isLogCurve

This commit is contained in:
Magne Sjaastad
2022-02-11 14:04:50 +01:00
parent 8253cfae2d
commit 1488eec855
12 changed files with 53 additions and 43 deletions

View File

@@ -573,9 +573,8 @@ void RimVfpPlot::populatePlotWidgetWithPlotData( RiuPlotWidget* plotWidget, cons
symbol->setSize( 6, 6 );
curve->setSymbol( symbol );
curve->setSamplesFromXValuesAndYValues( plotData.xData( idx ),
plotData.yData( idx ),
static_cast<int>( plotData.curveSize( idx ) ) );
bool isLogCurve = false;
curve->setSamplesFromXValuesAndYValues( plotData.xData( idx ), plotData.yData( idx ), isLogCurve );
curve->attachToPlot( plotWidget );
curve->showInPlot();
}