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:
@@ -50,7 +50,7 @@ RimPltPlotCollection::RimPltPlotCollection()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RimPltPlotCollection::~RimPltPlotCollection()
|
||||
{
|
||||
m_pltPlots.deleteAllChildObjects();
|
||||
m_pltPlots.deleteChildren();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -246,7 +246,7 @@ void RimPltPlotCollection::addPlot( gsl::not_null<RimWellPltPlot*> newPlot )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimPltPlotCollection::removePlot( gsl::not_null<RimWellPltPlot*> plot )
|
||||
{
|
||||
m_pltPlots.removeChildObject( plot );
|
||||
m_pltPlots.removeChild( plot );
|
||||
updateAllRequiredEditors();
|
||||
}
|
||||
|
||||
@@ -255,5 +255,5 @@ void RimPltPlotCollection::removePlot( gsl::not_null<RimWellPltPlot*> plot )
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimPltPlotCollection::deleteAllPlots()
|
||||
{
|
||||
m_pltPlots.deleteAllChildObjects();
|
||||
m_pltPlots.deleteChildren();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user