Renamed more stuff to gridLocalCellIndex

This commit is contained in:
Jacob Støren
2014-08-08 10:07:32 +02:00
committed by Magne Sjaastad
parent 37ef1cf71c
commit 16f762984e
3 changed files with 13 additions and 13 deletions

View File

@@ -368,9 +368,9 @@ double RigGridBase::characteristicIJCellSize()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
size_t RigGridBase::globalGridCellIndex(size_t localGridCellIndex) const
size_t RigGridBase::globalGridCellIndex(size_t gridLocalCellIndex) const
{
return m_indexToStartOfCells + localGridCellIndex;
return m_indexToStartOfCells + gridLocalCellIndex;
}
//--------------------------------------------------------------------------------------------------