mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Janitor : Fix invalid rename introduce by horizontal/vertical depth log plots
Fix deprecated
This commit is contained in:
@@ -314,7 +314,7 @@ void RimWellLogCurve::updateZoomInParentPlot()
|
||||
}
|
||||
if ( updateDepthZoom )
|
||||
{
|
||||
wellLogPlot->setAutoScaleDepthEnabled( true );
|
||||
wellLogPlot->setAutoScaleDepthValuesEnabled( true );
|
||||
}
|
||||
wellLogPlot->updateZoom();
|
||||
}
|
||||
|
||||
@@ -1355,6 +1355,22 @@ void RimWellLogTrack::setAndUpdateSimWellFormationNamesData( RimCase* rimCase, c
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellLogTrack::setAutoScaleXEnabled( bool enabled )
|
||||
{
|
||||
CAF_ASSERT( "A well log track can be both vertical and horizontal, use setAutoScalePropertyValuesEnabled " );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellLogTrack::setAutoScaleYEnabled( bool enabled )
|
||||
{
|
||||
CAF_ASSERT( "A well log track can be both vertical and horizontal, use setAutoScaleDepthValuesEnabled " );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -139,8 +139,11 @@ public:
|
||||
bool useBranchDetection );
|
||||
void setAndUpdateSimWellFormationNamesData( RimCase* rimCase, const QString& simWellName );
|
||||
|
||||
void setAutoScalePropertyValuesEnabled( bool enabled ) override;
|
||||
void setAutoScaleDepthValuesEnabled( bool enabled ) override;
|
||||
[[deprecated( "Use setAutoScalePropertyValuesEnabled() instead." )]] void setAutoScaleXEnabled( bool enabled ) override;
|
||||
[[deprecated( "Use setAutoScaleDepthValuesEnabled() instead." )]] void setAutoScaleYEnabled( bool enabled ) override;
|
||||
|
||||
void setAutoScalePropertyValuesEnabled( bool enabled );
|
||||
void setAutoScaleDepthValuesEnabled( bool enabled );
|
||||
void setAutoScalePropertyValuesIfNecessary();
|
||||
|
||||
void availablePropertyValueRange( double* minX, double* maxX );
|
||||
|
||||
Reference in New Issue
Block a user