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

@@ -43,7 +43,7 @@ RimEnsembleWellLogs::RimEnsembleWellLogs()
//--------------------------------------------------------------------------------------------------
void RimEnsembleWellLogs::removeWellLogFile( RimWellLogFile* summaryCase )
{
m_wellLogFiles.removeChildObject( summaryCase );
m_wellLogFiles.removeChild( summaryCase );
}
//--------------------------------------------------------------------------------------------------
@@ -59,7 +59,7 @@ void RimEnsembleWellLogs::addWellLogFile( RimWellLogFile* summaryCase )
//--------------------------------------------------------------------------------------------------
std::vector<RimWellLogFile*> RimEnsembleWellLogs::wellLogFiles() const
{
return m_wellLogFiles().childObjects();
return m_wellLogFiles().children();
}
//--------------------------------------------------------------------------------------------------