Rename to improve readability

This commit is contained in:
Magne Sjaastad
2024-05-02 11:26:52 +02:00
parent 6b76aad162
commit aea804b161
16 changed files with 35 additions and 35 deletions

View File

@@ -165,7 +165,7 @@ void RimWellDistributionPlot::updateLegend()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellDistributionPlot::updateZoomInParentPlot()
void RimWellDistributionPlot::updatePlotWidgetFromAxisRanges()
{
// cvf::Trace::show("RimWellDistributionPlot::updateZoomInParentPlot()");
}
@@ -173,7 +173,7 @@ void RimWellDistributionPlot::updateZoomInParentPlot()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellDistributionPlot::updateZoomFromParentPlot()
void RimWellDistributionPlot::updateAxisRangesFromPlotWidget()
{
// cvf::Trace::show("RimWellDistributionPlot::updateZoomFromParentPlot()");
}

View File

@@ -54,8 +54,8 @@ public:
void setAutoScaleYEnabled( bool enabled ) override;
void updateAxes() override;
void updateLegend() override;
void updateZoomInParentPlot() override;
void updateZoomFromParentPlot() override;
void updatePlotWidgetFromAxisRanges() override;
void updateAxisRangesFromPlotWidget() override;
QString asciiDataForPlotExport() const override;
void reattachAllCurves() override;
void detachAllCurves() override;

View File

@@ -395,7 +395,7 @@ void RimWellDistributionPlotCollection::updatePlots()
for ( RimPlot* plot : m_plots() )
{
plot->loadDataAndUpdate();
plot->updateZoomInParentPlot();
plot->updatePlotWidgetFromAxisRanges();
}
}
}