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

@@ -69,7 +69,7 @@ void RimWellPathFractureCollection::addFracture( RimWellPathFracture* fracture )
//--------------------------------------------------------------------------------------------------
void RimWellPathFractureCollection::deleteFractures()
{
m_fractures.deleteAllChildObjects();
m_fractures.deleteChildren();
}
//--------------------------------------------------------------------------------------------------
@@ -77,7 +77,7 @@ void RimWellPathFractureCollection::deleteFractures()
//--------------------------------------------------------------------------------------------------
std::vector<RimWellPathFracture*> RimWellPathFractureCollection::allFractures() const
{
return m_fractures.childObjects();
return m_fractures.children();
}
//--------------------------------------------------------------------------------------------------