From 9c646de48fc601d57f9fdb53bb5b9cc4cfd9d700 Mon Sep 17 00:00:00 2001 From: graham Date: Thu, 18 Nov 2010 18:11:37 +0000 Subject: [PATCH] STYLE: function name. --- .../conformalVoronoiMesh/conformalVoronoiMesh.C | 4 ++-- .../conformalVoronoiMesh/conformalVoronoiMesh.H | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.C b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.C index ecaf9ec1b5..c8c69acb84 100644 --- a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.C +++ b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.C @@ -492,7 +492,7 @@ void Foam::conformalVoronoiMesh::createFeaturePoints() Info<< nl << "Conforming to feature points" << endl; - insertConvexFeaturesPoints(); + insertConvexFeaturePoints(); insertConcaveFeaturePoints(); @@ -529,7 +529,7 @@ void Foam::conformalVoronoiMesh::createFeaturePoints() } -void Foam::conformalVoronoiMesh::insertConvexFeaturesPoints() +void Foam::conformalVoronoiMesh::insertConvexFeaturePoints() { const PtrList& feMeshes(geometryToConformTo_.features()); diff --git a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.H b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.H index 788c326387..388b238ad5 100644 --- a/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.H +++ b/src/mesh/conformalVoronoiMesh/conformalVoronoiMesh/conformalVoronoiMesh.H @@ -317,7 +317,7 @@ private: void createFeaturePoints(); //- Insert point groups at convex feature points - void insertConvexFeaturesPoints(); + void insertConvexFeaturePoints(); //- Insert point groups at concave feature points void insertConcaveFeaturePoints();