mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Rename several child() and children() functions
This commit is contained in:
@@ -147,7 +147,7 @@ RigGeoMechWellLogExtractor* RimWellLogPlotCollection::findOrCreateExtractor( Rim
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
std::vector<RimWellLogPlot*> RimWellLogPlotCollection::wellLogPlots() const
|
||||
{
|
||||
return m_wellLogPlots.childObjects();
|
||||
return m_wellLogPlots.children();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -163,7 +163,7 @@ void RimWellLogPlotCollection::addWellLogPlot( gsl::not_null<RimWellLogPlot*> we
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellLogPlotCollection::deleteAllPlots()
|
||||
{
|
||||
m_wellLogPlots.deleteAllChildObjects();
|
||||
m_wellLogPlots.deleteChildren();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -171,7 +171,7 @@ void RimWellLogPlotCollection::deleteAllPlots()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimWellLogPlotCollection::removePlot( gsl::not_null<RimWellLogPlot*> plot )
|
||||
{
|
||||
m_wellLogPlots.removeChildObject( plot );
|
||||
m_wellLogPlots.removeChild( plot );
|
||||
updateAllRequiredEditors();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user