Renamed ID() -> Index()

Index is a better name to describe a label index than ID which may be an
integer, word or other means of identification.
This commit is contained in:
Henry Weller
2023-12-20 18:39:55 +00:00
parent 7df07d2660
commit 20f5235ecf
112 changed files with 665 additions and 648 deletions

View File

@ -42,7 +42,9 @@ Foam::label Foam::fvFieldReconstructor::completePatchID
}
else if (isA<processorCyclicFvPatch>(procPatch))
{
return refCast<const processorCyclicFvPatch>(procPatch).referPatchID();
return
refCast<const processorCyclicFvPatch>(procPatch)
.referPatchIndex();
}
else
{