#1996 Renaming. Remove unused includes and rename local variables

This commit is contained in:
Rebecca Cox
2017-10-13 10:16:01 +02:00
parent d748803159
commit 7d908394db
31 changed files with 35 additions and 54 deletions

View File

@@ -191,7 +191,7 @@ void RimIntersectionCollection::fieldChangedByUi(const caf::PdmFieldHandle* chan
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RimIntersectionCollection::hasActiveIntersectionForSimulationWell(const RimSimWellInView* eclipseWell) const
bool RimIntersectionCollection::hasActiveIntersectionForSimulationWell(const RimSimWellInView* simWell) const
{
if (!isActive) return false;
@@ -199,7 +199,7 @@ bool RimIntersectionCollection::hasActiveIntersectionForSimulationWell(const Rim
{
if (cs->isActive &&
cs->type() == RimIntersection::CS_SIMULATION_WELL &&
cs->simulationWell() == eclipseWell)
cs->simulationWell() == simWell)
{
return true;
}