Janitor : Fix invalid rename introduce by horizontal/vertical depth log plots

Fix deprecated
This commit is contained in:
Magne Sjaastad
2022-03-08 08:42:21 +01:00
parent 6700c21086
commit 728885a6c8
23 changed files with 67 additions and 66 deletions

View File

@@ -1130,8 +1130,8 @@ void RimSummaryPlot::removeAllTimeAnnotations()
//--------------------------------------------------------------------------------------------------
void RimSummaryPlot::zoomAll()
{
setAutoScalePropertyValuesEnabled( true );
setAutoScaleDepthValuesEnabled( true );
setAutoScaleXEnabled( true );
setAutoScaleYEnabled( true );
updateZoomInParentPlot();
}
@@ -2016,8 +2016,8 @@ void RimSummaryPlot::addNewEnsembleCurveY( const RifEclipseSummaryAddress& addre
//--------------------------------------------------------------------------------------------------
void RimSummaryPlot::onPlotZoomed()
{
setAutoScalePropertyValuesEnabled( false );
setAutoScaleDepthValuesEnabled( false );
setAutoScaleXEnabled( false );
setAutoScaleYEnabled( false );
updateZoomFromParentPlot();
}
@@ -2400,7 +2400,7 @@ std::vector<caf::PdmFieldHandle*> RimSummaryPlot::fieldsToShowInToolbar()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimSummaryPlot::setAutoScalePropertyValuesEnabled( bool enabled )
void RimSummaryPlot::setAutoScaleXEnabled( bool enabled )
{
for ( auto ap : m_axisProperties )
{
@@ -2415,7 +2415,7 @@ void RimSummaryPlot::setAutoScalePropertyValuesEnabled( bool enabled )
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimSummaryPlot::setAutoScaleDepthValuesEnabled( bool enabled )
void RimSummaryPlot::setAutoScaleYEnabled( bool enabled )
{
for ( auto ap : m_axisProperties )
{