Fixes by clang-format

This commit is contained in:
magnesj 2022-02-12 13:38:03 +00:00 committed by Magne Sjaastad
parent 5973dde70c
commit e85bba9014

View File

@ -371,14 +371,10 @@ void RimWellLogExtractionCurve::onLoadDataAndUpdate( bool updateParentPlot )
CAF_ASSERT( xPlotValues.size() == depthPlotValues.size() ); CAF_ASSERT( xPlotValues.size() == depthPlotValues.size() );
if ( wellLogPlot->depthOrientation() == RimDepthTrackPlot::DepthOrientation::HORIZONTAL ) if ( wellLogPlot->depthOrientation() == RimDepthTrackPlot::DepthOrientation::HORIZONTAL )
m_plotCurve->setSamplesFromXValuesAndYValues( depthPlotValues, m_plotCurve->setSamplesFromXValuesAndYValues( depthPlotValues, xPlotValues, isLogCurve );
xPlotValues,
isLogCurve );
else else
m_plotCurve->setSamplesFromXValuesAndYValues( xPlotValues, m_plotCurve->setSamplesFromXValuesAndYValues( xPlotValues, depthPlotValues, isLogCurve );
depthPlotValues,
isLogCurve );
m_plotCurve->setLineSegmentStartStopIndices( curveData()->polylineStartStopIndices() ); m_plotCurve->setLineSegmentStartStopIndices( curveData()->polylineStartStopIndices() );