Rename several child() and children() functions

This commit is contained in:
Magne Sjaastad
2022-05-31 13:08:07 +02:00
parent c199f960e3
commit c74701b687
179 changed files with 429 additions and 431 deletions

View File

@@ -41,7 +41,7 @@ RimStimPlanModelPlotCollection::RimStimPlanModelPlotCollection()
//--------------------------------------------------------------------------------------------------
RimStimPlanModelPlotCollection::~RimStimPlanModelPlotCollection()
{
m_stimPlanModelPlots.deleteAllChildObjects();
m_stimPlanModelPlots.deleteChildren();
}
//--------------------------------------------------------------------------------------------------
@@ -76,7 +76,7 @@ void RimStimPlanModelPlotCollection::addStimPlanModelPlot( RimStimPlanModelPlot*
//--------------------------------------------------------------------------------------------------
std::vector<RimStimPlanModelPlot*> RimStimPlanModelPlotCollection::stimPlanModelPlots() const
{
return m_stimPlanModelPlots.childObjects();
return m_stimPlanModelPlots.children();
}
//--------------------------------------------------------------------------------------------------
@@ -84,5 +84,5 @@ std::vector<RimStimPlanModelPlot*> RimStimPlanModelPlotCollection::stimPlanModel
//--------------------------------------------------------------------------------------------------
void RimStimPlanModelPlotCollection::deleteAllPlots()
{
m_stimPlanModelPlots.deleteAllChildObjects();
m_stimPlanModelPlots.deleteChildren();
}