From 00cd2e7ea9999c6af1d25a9d5438539e87756c9b Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Mon, 15 Sep 2014 12:31:45 +0200
Subject: [PATCH] [PL] Rename numberNodeDOFs to numberOfNodeComponents.

---
 ProcessLib/Process.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h
index aa8c8ecb76a..b76b93d2d9e 100644
--- a/ProcessLib/Process.h
+++ b/ProcessLib/Process.h
@@ -18,8 +18,8 @@ namespace ProcessLib
 class Process
 {
 public:
-    Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeVariables)
-        : _mesh(mesh), _numberNodeDOFs(numberOfNodeVariables)
+    Process(MeshLib::Mesh const& mesh, std::size_t const numberOfNodeComponents)
+        : _mesh(mesh), _numberOfNodeComponents(numberOfNodeComponents)
     { }
 
     virtual ~Process() = default;
@@ -28,7 +28,7 @@ public:
 
 protected:
     MeshLib::Mesh const& _mesh;
-    std::size_t const _numberNodeDOFs;
+    std::size_t const _numberOfNodeComponents;
 };
 
 }   // namespace ProcessLib
-- 
GitLab