diff --git a/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.cpp b/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.cpp index 0921ccb63e..38de22f8b9 100644 --- a/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.cpp +++ b/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.cpp @@ -351,7 +351,7 @@ std::vector RimWellPltPlot::eclipseCases() const //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- -void RimWellPltPlot::updateFormationNamesData() const +void RimWellPltPlot::updateFormationsOnPlot() const { if (m_selectedTimeSteps().empty()) { diff --git a/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.h b/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.h index 26f9c77fbe..a449797055 100644 --- a/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.h +++ b/ApplicationCode/ProjectDataModel/Flow/RimWellPltPlot.h @@ -174,7 +174,7 @@ private: void setPlotXAxisTitles(RimWellLogTrack* plotTrack); std::vector eclipseCases() const; - void updateFormationNamesData() const; + void updateFormationsOnPlot() const; private: caf::PdmField m_showPlotTitle; diff --git a/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.cpp b/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.cpp index ad2add6425..5223592dca 100644 --- a/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.cpp +++ b/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.cpp @@ -254,7 +254,7 @@ void RimWellRftPlot::updateSelectedTimeStepsFromSelectedSources() //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- -void RimWellRftPlot::updateFormationNamesData() const +void RimWellRftPlot::updateFormationsOnPlot() const { if (m_selectedTimeSteps().empty()) { @@ -1162,7 +1162,7 @@ void RimWellRftPlot::fieldChangedByUi(const caf::PdmFieldHandle* changedField, c } m_timeStepsToAddresses.clear(); updateEditorsFromCurves(); - updateFormationNamesData(); + updateFormationsOnPlot(); } else if (changedField == &m_selectedSources) { @@ -1173,7 +1173,7 @@ void RimWellRftPlot::fieldChangedByUi(const caf::PdmFieldHandle* changedField, c if (changedField == &m_selectedSources || changedField == &m_selectedTimeSteps) { - updateFormationNamesData(); + updateFormationsOnPlot(); syncCurvesFromUiSelection(); m_selectedSourcesOrTimeStepsFieldsChanged = true; } @@ -1420,7 +1420,7 @@ QString RimWellRftPlot::description() const void RimWellRftPlot::onLoadDataAndUpdate() { updateMdiWindowVisibility(); - updateFormationNamesData(); + updateFormationsOnPlot(); m_wellLogPlot->loadDataAndUpdate(); updateEditorsFromCurves(); } diff --git a/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.h b/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.h index 59174c9ee4..a58e63febd 100644 --- a/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.h +++ b/ApplicationCode/ProjectDataModel/Flow/RimWellRftPlot.h @@ -151,7 +151,7 @@ private: void applyCurveAppearance(RimWellLogCurve* newCurve); void updateSelectedTimeStepsFromSelectedSources(); - void updateFormationNamesData() const; + void updateFormationsOnPlot() const; private: caf::PdmField m_showPlotTitle; caf::PdmField m_userName;